hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
ae83eec6ff5679992404ecd20d2019cb21422adb
diff --git a/Tests/DependencyInjection/Fixtures/Util/EventDispatcherSpy.php b/Tests/DependencyInjection/Fixtures/Util/EventDispatcherSpy.php index <HASH>..<HASH> 100644 --- a/Tests/DependencyInjection/Fixtures/Util/EventDispatcherSpy.php +++ b/Tests/DependencyInjection/Fixtures/Util/EventDispatcherSpy.php @@ -2,7 +2,6 ...
chore(f-deprecation): refactored EventDispatcherSpy following deprecation cleanup
OpenClassrooms_UseCaseBundle
train
c568389b6c81dfd0db336dd500796b9e407244d3
diff --git a/tests/Assets/AbstractTest.php b/tests/Assets/AbstractTest.php index <HASH>..<HASH> 100644 --- a/tests/Assets/AbstractTest.php +++ b/tests/Assets/AbstractTest.php @@ -123,7 +123,7 @@ abstract class AbstractTest extends TestCase $this->clearCache(); $this->extendAutoloader( sta...
more refactoring of the extend autoloader
edmondscommerce_doctrine-static-meta
train
aa20b33377f2eed8ee6b9169a9f97a2b4ac8fd46
diff --git a/holoviews/core/layout.py b/holoviews/core/layout.py index <HASH>..<HASH> 100644 --- a/holoviews/core/layout.py +++ b/holoviews/core/layout.py @@ -28,7 +28,7 @@ class Composable(object): """ def __add__(self, obj): - return Layout.from_values(self) + Layout.from_values(obj) + retur...
Simplified __add__ methods
pyviz_holoviews
train
8505d2a7ec27a62df599b960ba320fef41c329eb
diff --git a/src/toastify.js b/src/toastify.js index <HASH>..<HASH> 100644 --- a/src/toastify.js +++ b/src/toastify.js @@ -127,31 +127,6 @@ }.bind(this) ); - // Clear timeout while toast is focused - if (this.options.stopOnFocus && this.options.duration > 0) { - var self = t...
Separate stopOnFocus from close (#<I>) Even when close is not true, still stop dissappearing on focus
apvarun_toastify-js
train
ee65ae55e625b0197084a9017ca7d91c5839182e
diff --git a/graylog2-web-interface/devServer.js b/graylog2-web-interface/devServer.js index <HASH>..<HASH> 100644 --- a/graylog2-web-interface/devServer.js +++ b/graylog2-web-interface/devServer.js @@ -53,6 +53,7 @@ app.use('/api', proxy(apiUrl, { // to make sure we hit the "/api" resources on the server. re...
Disable request body parsing in 'devServer.js'. (#<I>) 'express-http-proxy' attempts to parse the request body by default for various uses (e.g. limiting body size via 'limit'). To avoid issues with proxying to the API in 'devServer.js' this behavior should be disabled. <URL>
Graylog2_graylog2-server
train
5226686a22e6fde3a154c1e967ad429d704ce1c9
diff --git a/fcache/cache.py b/fcache/cache.py index <HASH>..<HASH> 100644 --- a/fcache/cache.py +++ b/fcache/cache.py @@ -25,8 +25,10 @@ class FileCache(MutableMapping): the optional *flag* argument. .. NOTE:: - Keys and values are always stored as bytes. Keys are implicitly - encoded to byte...
Returns keys as bytes/str depending on serialization setting.
tsroten_fcache
train
f76a2529c9da1777b278f7d85f843aaef38e2c0f
diff --git a/docs/app/lib/components/ComponentPlayground/ComponentPlayground.js b/docs/app/lib/components/ComponentPlayground/ComponentPlayground.js index <HASH>..<HASH> 100644 --- a/docs/app/lib/components/ComponentPlayground/ComponentPlayground.js +++ b/docs/app/lib/components/ComponentPlayground/ComponentPlayground....
Icons aren't exactly centered for buttons in the InstUI docs Fixes: INSTUI-<I> Test Plan: Turns out it was only the icon button for showing and hiding code examples, which previously looked like this: <URL>
instructure_instructure-ui
train
37829ea4c3bcf9f02a2f9b266040bce7c3020bb7
diff --git a/raft/log.go b/raft/log.go index <HASH>..<HASH> 100644 --- a/raft/log.go +++ b/raft/log.go @@ -995,7 +995,7 @@ func (l *Log) candidateLoop(closing <-chan struct{}) State { // Check against the current term since that may have changed. l.mu.Lock() - if newTerm >= l.term { + if newTerm > l.term ...
Only update term if higher in candidate loop. This fixes a bug where votes were overwritten because terms were being reset by incoming terms that were the same.
influxdata_influxdb
train
4ca892572997b81e77efae0312d1526991f97727
diff --git a/packages/mdc-ripple/foundation.js b/packages/mdc-ripple/foundation.js index <HASH>..<HASH> 100644 --- a/packages/mdc-ripple/foundation.js +++ b/packages/mdc-ripple/foundation.js @@ -330,26 +330,44 @@ class MDCRippleFoundation extends MDCFoundation { this.registerDeactivationHandlers_(e); } + ...
fix(ripple): Re-flow logic to avoid crashing Edge (#<I>)
material-components_material-components-web
train
974565b630687721f9a3ca7211b522a06aa4a8d0
diff --git a/test/tools/javac/T6873845.java b/test/tools/javac/T6873845.java index <HASH>..<HASH> 100644 --- a/test/tools/javac/T6873845.java +++ b/test/tools/javac/T6873845.java @@ -19,8 +19,8 @@ public class T6873845 { if (out.contains("sunapi")) throw new Exception("unexpected output for -X"); ...
Improve debugging output; adapt expected line numbers accordingly.
wmdietl_jsr308-langtools
train
14330d83aae63cd9a12f676e6dbe54073a172886
diff --git a/qiskit/simulators/_qasmsimulator.py b/qiskit/simulators/_qasmsimulator.py index <HASH>..<HASH> 100644 --- a/qiskit/simulators/_qasmsimulator.py +++ b/qiskit/simulators/_qasmsimulator.py @@ -40,7 +40,7 @@ registors. if shots > 1 results['data']["counts"] where this is dict {"0000" : 454} -The simula...
sped up measurement and reset by removing string ops
Qiskit_qiskit-terra
train
e88182694a09bd5db7483ff900868199656d6fdf
diff --git a/tests/Common/BranchComponentTest.php b/tests/Common/BranchComponentTest.php index <HASH>..<HASH> 100644 --- a/tests/Common/BranchComponentTest.php +++ b/tests/Common/BranchComponentTest.php @@ -174,16 +174,16 @@ class BranchComponentTest extends StorageApiTestCase //create $config = (new ...
Rename Dev branch configurationId to `dev-branch-1`
keboola_storage-api-php-client
train
e44f2a90d837b6e2d7592f5593f5920dd5269447
diff --git a/lib/structure.rb b/lib/structure.rb index <HASH>..<HASH> 100644 --- a/lib/structure.rb +++ b/lib/structure.rb @@ -167,11 +167,6 @@ module Structure @attributes.each { |value| block.call(value) } end - # Returns an array populated with the attribute keys. - def keys - @attributes.keys - end ...
remove #keys and #values, which seem to be of limited value
hakanensari_structure
train
52e38c7d26aa1dfdccf45b8e08f3d2f77f3e7fa3
diff --git a/lib/countries/country.rb b/lib/countries/country.rb index <HASH>..<HASH> 100644 --- a/lib/countries/country.rb +++ b/lib/countries/country.rb @@ -32,7 +32,7 @@ module ISO3166 alias names unofficial_names def ==(other) - other.alpha2 == alpha2 + other.respond_to?(:alpha2) && other.alph...
Fixes #<I> for comparison of country to nil
hexorx_countries
train
f7c6620498c497537aed7b7316414cb3bf5cec10
diff --git a/lib/iban-check/iban.rb b/lib/iban-check/iban.rb index <HASH>..<HASH> 100644 --- a/lib/iban-check/iban.rb +++ b/lib/iban-check/iban.rb @@ -28,6 +28,11 @@ module Iban result % 10 end + def recalculate_checksum + store_checksum = checksum + store_checksum + iban.slice(2,iban.length)...
returning full IBAN with recalculated checksum
LTe_iban-check
train
7f1f1baf7f428e1e76fc6526fe53af596e570ecc
diff --git a/DependencyInjection/SkrzBunnyExtension.php b/DependencyInjection/SkrzBunnyExtension.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/SkrzBunnyExtension.php +++ b/DependencyInjection/SkrzBunnyExtension.php @@ -29,31 +29,31 @@ class SkrzBunnyExtension extends Extension implements ConfigurationInterf...
allow dashes to be used in array keys in bundle configuration
skrz_bunny-bundle
train
350bc345f4fffb46567b880b037e986857695272
diff --git a/src/main/java/info/archinnov/achilles/entity/manager/ThriftBatchingEntityManager.java b/src/main/java/info/archinnov/achilles/entity/manager/ThriftBatchingEntityManager.java index <HASH>..<HASH> 100644 --- a/src/main/java/info/archinnov/achilles/entity/manager/ThriftBatchingEntityManager.java +++ b/src/mai...
Throw exception when trying to merge WideRow
doanduyhai_Achilles
train
25a808867f124a974773b7146985d4720957c544
diff --git a/test/sql_test.rb b/test/sql_test.rb index <HASH>..<HASH> 100644 --- a/test/sql_test.rb +++ b/test/sql_test.rb @@ -87,6 +87,11 @@ class TestSql < Minitest::Unit::TestCase assert_search "blue", ["red"], fields: ["color"] end + def test_non_existent_field + store_names ["Milk"] + assert_searc...
Added test for non-existent fields
ankane_searchkick
train
57e697b6000a3d4bfa7b4001be8a68af463b31cf
diff --git a/src/java/com/threerings/admin/client/FieldEditor.java b/src/java/com/threerings/admin/client/FieldEditor.java index <HASH>..<HASH> 100644 --- a/src/java/com/threerings/admin/client/FieldEditor.java +++ b/src/java/com/threerings/admin/client/FieldEditor.java @@ -1,5 +1,5 @@ // -// $Id: FieldEditor.java,v 1...
Handle long fields, report when we don't know the type of a field. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@<I> <I>f4-<I>e9-<I>-aa3c-eee0fc<I>fb1
threerings_narya
train
ce1834da8aacbc72dc1f4e57057c73e386ca8adf
diff --git a/wfdb/io/_signal.py b/wfdb/io/_signal.py index <HASH>..<HASH> 100644 --- a/wfdb/io/_signal.py +++ b/wfdb/io/_signal.py @@ -941,6 +941,7 @@ def _rd_segment(file_name, dir_name, pn_dir, fmt, n_sig, sig_len, byte_offset, byte_offset = byte_offset[:] samps_per_frame = samps_per_frame[:] skew = sk...
_rd_dat_signals: add init_value argument. This should be a list containing the initial sample value for each signal; this is required in order to correctly read format-8 dat files.
MIT-LCP_wfdb-python
train
34562e5df4e5aeb1f1ebf679be20be64d30109be
diff --git a/anndata/_core/anndata.py b/anndata/_core/anndata.py index <HASH>..<HASH> 100644 --- a/anndata/_core/anndata.py +++ b/anndata/_core/anndata.py @@ -1539,6 +1539,10 @@ class AnnData(metaclass=utils.DeprecationMixinMeta): Currently, this works only in `'memory'` mode. + .. note:: + + ...
Link to concat from concatenate (#<I>)
theislab_anndata
train
304fe4510bfd548844c5351cb1f09bccd3c6b543
diff --git a/src/Transaction/TransactionBuilder.php b/src/Transaction/TransactionBuilder.php index <HASH>..<HASH> 100755 --- a/src/Transaction/TransactionBuilder.php +++ b/src/Transaction/TransactionBuilder.php @@ -380,12 +380,8 @@ class TransactionBuilder implements XdrEncodableInterface { $bytes = ''; ...
TransactionBuilder - sequenceNumber is now always a BigInteger
zulucrypto_stellar-api
train
0bacdf267986b7f286acf5a86605102e35fc5da2
diff --git a/lib/node_modules/@stdlib/stats/anova1/lib/print.js b/lib/node_modules/@stdlib/stats/anova1/lib/print.js index <HASH>..<HASH> 100644 --- a/lib/node_modules/@stdlib/stats/anova1/lib/print.js +++ b/lib/node_modules/@stdlib/stats/anova1/lib/print.js @@ -98,7 +98,7 @@ function prettyPrint( results ) { str +=...
Round sum of squares in print output
stdlib-js_stdlib
train
c5c46eef26858c55a437accbb954686d85192619
diff --git a/test/slop_test.rb b/test/slop_test.rb index <HASH>..<HASH> 100644 --- a/test/slop_test.rb +++ b/test/slop_test.rb @@ -54,9 +54,7 @@ class SlopTest < TestCase test 'callback when option array is empty' do item1 = nil - temp_argv([]) do - Slop.new { on_empty { item1 = 'foo' } }.parse - e...
no need to rely on ARGV for this test
leejarvis_slop
train
e0cceb37a9ca863d64fe2c31bc4a28b4742ddd08
diff --git a/src/resources/application-charge.php b/src/resources/application-charge.php index <HASH>..<HASH> 100644 --- a/src/resources/application-charge.php +++ b/src/resources/application-charge.php @@ -17,7 +17,7 @@ return array( /** * getApplicationCharges() method * - * ...
Removing unnecessary functions: getArticle, createArticle. Fixed Typos and updated docs url
ShopifyExtras_PHP-Shopify-API-Wrapper
train
8257fb3fb0601e8714008f55fcf40d8f7f2ae4b6
diff --git a/container/lxd/initialisation_test.go b/container/lxd/initialisation_test.go index <HASH>..<HASH> 100644 --- a/container/lxd/initialisation_test.go +++ b/container/lxd/initialisation_test.go @@ -6,6 +6,9 @@ package lxd import ( + "os/exec" + "strconv" + jc "github.com/juju/testing/checkers" "github....
lxd container type: add test for current host's network
juju_juju
train
6d69b14b8b0ccc16cbc0d52b24d637af9056fb54
diff --git a/src/main/java/org/sakaiproject/nakamura/lite/storage/jdbc/JDBCStorageClient.java b/src/main/java/org/sakaiproject/nakamura/lite/storage/jdbc/JDBCStorageClient.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/sakaiproject/nakamura/lite/storage/jdbc/JDBCStorageClient.java +++ b/src/main/java/org/saka...
You must set parameters before adding to a batch.
ieb_sparsemapcontent
train
a374c8cf67cdc23d4fd910011ea0dfcac26bf0e8
diff --git a/phypno/scroll_data.py b/phypno/scroll_data.py index <HASH>..<HASH> 100644 --- a/phypno/scroll_data.py +++ b/phypno/scroll_data.py @@ -66,7 +66,7 @@ setConfigOption('background', 'w') config = QSettings("phypno", "scroll_data") config.setValue('window_start', 0) config.setValue('window_length', 30) -conf...
reorganize: works well, widgets are nicely integrated, but there are still some bugs
wonambi-python_wonambi
train
c5e6fb8ad5c26253445c4c15891bc297c6f2e43d
diff --git a/apiserver/common/networkingcommon/networkconfigapi.go b/apiserver/common/networkingcommon/networkconfigapi.go index <HASH>..<HASH> 100644 --- a/apiserver/common/networkingcommon/networkconfigapi.go +++ b/apiserver/common/networkingcommon/networkconfigapi.go @@ -53,27 +53,13 @@ func (api *NetworkConfigAPI) ...
Prevent the machiner from querying and merging provider-sourced info From now on, this task will be exclusively handled by the instancepoller.
juju_juju
train
ae5b0d66aff5b97ed00e56faaee19dd3d492474e
diff --git a/VERSION b/VERSION index <HASH>..<HASH> 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.1.6-13-g617f4c5-dirty +v0.1.6-14-g840f5f3-dirty diff --git a/mykatlas/cmds/place.py b/mykatlas/cmds/place.py index <HASH>..<HASH> 100644 --- a/mykatlas/cmds/place.py +++ b/mykatlas/cmds/place.py @@ -46,10 +46,15 @@ de...
Print top <I> including intersection
Phelimb_atlas
train
0781c4cca150bc94c228cdf196fbaa4408bb4ba2
diff --git a/simple_settings/strategies/__init__.py b/simple_settings/strategies/__init__.py index <HASH>..<HASH> 100644 --- a/simple_settings/strategies/__init__.py +++ b/simple_settings/strategies/__init__.py @@ -4,6 +4,6 @@ from .python import SettingsLoadStrategyPython strategies = ( - SettingsLoadStrategyP...
use classmethod instead instance method in cfg and python strategies to avoid create new instance of this class
drgarcia1986_simple-settings
train
c7de49587e2fa3906d561d855db93618f1caff66
diff --git a/vendor/assets/javascripts/perspectives.js b/vendor/assets/javascripts/perspectives.js index <HASH>..<HASH> 100644 --- a/vendor/assets/javascripts/perspectives.js +++ b/vendor/assets/javascripts/perspectives.js @@ -53,28 +53,8 @@ } var $rendered = $(renderTemplateData(json)) - var $perspectiv...
Kill transitions stuff - It was a bad idea anyway!
Genius_perspectives
train
fdfbf5e8e092161eadd373f319482b2b76af90e6
diff --git a/src/test/org/openscience/cdk/reaction/type/PiBondingMovementReactionTest.java b/src/test/org/openscience/cdk/reaction/type/PiBondingMovementReactionTest.java index <HASH>..<HASH> 100644 --- a/src/test/org/openscience/cdk/reaction/type/PiBondingMovementReactionTest.java +++ b/src/test/org/openscience/cdk/re...
Fixing test regression that depended on the molecule having the same kekule form - i.e. order dependant. When the ring perception changed the order may not be exactly the same but nothing should rely on that fact. Setting the aromaticity fixes the test failure.
cdk_cdk
train
39dda49b18d0234b986385401863d2eb3d4c8da8
diff --git a/test-complete/nodejs-graphs-content-type.js b/test-complete/nodejs-graphs-content-type.js index <HASH>..<HASH> 100644 --- a/test-complete/nodejs-graphs-content-type.js +++ b/test-complete/nodejs-graphs-content-type.js @@ -26,7 +26,7 @@ var q = marklogic.queryBuilder; var db = marklogic.createDatabaseClien...
Added tests for #<I>
marklogic_node-client-api
train
c091679a88a74b5a8f4a6e2e48b2cbdb159e6945
diff --git a/test/kubelessDeploy.test.js b/test/kubelessDeploy.test.js index <HASH>..<HASH> 100644 --- a/test/kubelessDeploy.test.js +++ b/test/kubelessDeploy.test.js @@ -542,7 +542,7 @@ describe('KubelessDeploy', () => { trigger: { queue: 'nats', topic: 'topic', - } + }, ...
Added: Missing trailing comma
serverless_serverless-kubeless
train
ee2dd04ae6848cff19281960486d5cb0d47bfafc
diff --git a/common/oatbox/service/EnvironmentVariable.php b/common/oatbox/service/EnvironmentVariable.php index <HASH>..<HASH> 100644 --- a/common/oatbox/service/EnvironmentVariable.php +++ b/common/oatbox/service/EnvironmentVariable.php @@ -19,6 +19,8 @@ namespace oat\oatbox\service; +use common_Utils as Utils; ...
Escaped variable name + only strings are accepted as variable names.
oat-sa_generis
train
29890fe0979af1d857ba3143088b67687c8d6332
diff --git a/packages/adblocker-benchmarks/blockers/hosts-lookup.js b/packages/adblocker-benchmarks/blockers/hosts-lookup.js index <HASH>..<HASH> 100644 --- a/packages/adblocker-benchmarks/blockers/hosts-lookup.js +++ b/packages/adblocker-benchmarks/blockers/hosts-lookup.js @@ -20,8 +20,24 @@ module.exports = class Hos...
Add support for exceptions to hosts-lookup (#<I>)
cliqz-oss_adblocker
train
9a9712314fefd9d280c7bb1e2441c0f8c91e97b2
diff --git a/nolds/measures.py b/nolds/measures.py index <HASH>..<HASH> 100644 --- a/nolds/measures.py +++ b/nolds/measures.py @@ -1057,7 +1057,7 @@ def hurst_rs(data, nvals=None, fit="RANSAC", debug_plot=False, # S is also zero) not_nan = np.logical_not(np.isnan(rsvals)) rsvals = rsvals[not_nan] - nvals = nv...
bugfix: nvals needs to be an array
CSchoel_nolds
train
4202dfef6ade2fdb1160f037a4fe55e6146c62ed
diff --git a/junction/base.py b/junction/base.py index <HASH>..<HASH> 100644 --- a/junction/base.py +++ b/junction/base.py @@ -97,8 +97,9 @@ class ABCUIElement(metaclass=ABCMeta): if self._previous_geometry is None: raise ValueError("draw() must be called on {!r} before it can be " ...
Changed updating logic a little... and made the input element update trigger a general update draw, rather than a full redraw.
ch3pjw_junction
train
9b6fbd78cfa059623a65c1309c8174e3fcbceb0c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,6 @@ import os import sys +import re from setuptools import setup from setuptools.command.test import test as TestCommand @@ -8,6 +9,18 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__),...
handle version string in one location, _version.py
perrygeo_python-rasterstats
train
ed4f3a98ab86518c7a4d81d0e14053428e800d30
diff --git a/tower_cli/models/base.py b/tower_cli/models/base.py index <HASH>..<HASH> 100644 --- a/tower_cli/models/base.py +++ b/tower_cli/models/base.py @@ -856,7 +856,7 @@ class MonitorableResource(BaseResource): job_endpoint = '%s%s/' % (self.unified_job_type, pk) # Pause until job is in running...
Pass outfile to wait to ensure that all output from monitor is directed to outfile
ansible_tower-cli
train
41d961aa1ce7922a46077054298fdab916713402
diff --git a/src/SALib/analyze/hdmr.py b/src/SALib/analyze/hdmr.py index <HASH>..<HASH> 100644 --- a/src/SALib/analyze/hdmr.py +++ b/src/SALib/analyze/hdmr.py @@ -707,7 +707,11 @@ def to_df(self): Pandas DataFrame ''' names = self['names'] - exclude_list = ['select', 'Em', 'RT', 'Y_em', 'idx', 'X', 'Y...
Added more elements to ignore when converting to DataFrame
SALib_SALib
train
4e3caf5f62d59e6a3f4fa478fc27e5f280f2b64c
diff --git a/lib/mumble-ruby/client.rb b/lib/mumble-ruby/client.rb index <HASH>..<HASH> 100644 --- a/lib/mumble-ruby/client.rb +++ b/lib/mumble-ruby/client.rb @@ -2,13 +2,15 @@ require 'thread' module Mumble class Client - attr_reader :host, :port, :username, :password + attr_reader :host, :port, :username,...
Functioning client, can move between channels, send messages
mattvperry_mumble-ruby
train
d6267da7f48ac8593efcbec7e438bda7825e7015
diff --git a/sqlauth/scripts/sqlPGinit.py b/sqlauth/scripts/sqlPGinit.py index <HASH>..<HASH> 100755 --- a/sqlauth/scripts/sqlPGinit.py +++ b/sqlauth/scripts/sqlPGinit.py @@ -80,7 +80,7 @@ args = p.parse_args() # these are the commands we are gonna run, in order # cmds = [ - 'adduser --disabled-password --home {d...
creating a system user so no prompting for first name, last name etc. now creating the tables as well
lgfausak_sqlauth
train
5527e26efc04524fb98f611d6e5f5906187b81b9
diff --git a/scrape/scrape.go b/scrape/scrape.go index <HASH>..<HASH> 100644 --- a/scrape/scrape.go +++ b/scrape/scrape.go @@ -225,11 +225,10 @@ type scrapePool struct { cancel context.CancelFunc // mtx must not be taken after targetMtx. - mtx sync.Mutex - config *config.ScrapeConfig - clie...
scrape: fix 'target_limit exceeded error' when reloading conf with 0
prometheus_prometheus
train
a38b1ee3afc98065d6b0852c8437ab7107d4c51f
diff --git a/plugins/candela/web_client/views/CandelaWidget.js b/plugins/candela/web_client/views/CandelaWidget.js index <HASH>..<HASH> 100644 --- a/plugins/candela/web_client/views/CandelaWidget.js +++ b/plugins/candela/web_client/views/CandelaWidget.js @@ -6,7 +6,6 @@ import CandelaWidgetTemplate from '../templates/c...
Rename empty string fields and fields with dots
Kitware_candela
train
d42444a0a17fc7267b4ca615891a23e91a0b3c43
diff --git a/src/simplebar.js b/src/simplebar.js index <HASH>..<HASH> 100755 --- a/src/simplebar.js +++ b/src/simplebar.js @@ -115,7 +115,7 @@ export default class SimpleBar { const options = Object.keys(SimpleBar.htmlAttributes).reduce((acc, obj) => { const attribute = SimpleBar.htmlAttributes[ob...
fix some data-attribute not working properly as options
Grsmto_simplebar
train
8fd20bdfcf96eafa4daea91939c2b2448f3ea67c
diff --git a/safe_qgis/tools/batch/batch_dialog.py b/safe_qgis/tools/batch/batch_dialog.py index <HASH>..<HASH> 100644 --- a/safe_qgis/tools/batch/batch_dialog.py +++ b/safe_qgis/tools/batch/batch_dialog.py @@ -29,6 +29,8 @@ from datetime import datetime from StringIO import StringIO from ConfigParser import ConfigPa...
[Backport] Fix Batch Dialog in Master * After some particular QGIS version, we need to set layer set to canvas after adding the layers to map registry. This is necessary so InaSAFE Dock can recognise the layers loaded in QGIS. * With the new QgsLegendModelV2, to draw the layer's legend in composition, the layer must b...
inasafe_inasafe
train
5db62125f94385520e4a739bf0dab514bfe8e559
diff --git a/core-bundle/src/Resources/contao/dca/tl_settings.php b/core-bundle/src/Resources/contao/dca/tl_settings.php index <HASH>..<HASH> 100644 --- a/core-bundle/src/Resources/contao/dca/tl_settings.php +++ b/core-bundle/src/Resources/contao/dca/tl_settings.php @@ -94,7 +94,11 @@ $GLOBALS['TL_DCA']['tl_settings'] ...
[Core] Purge the internal cache when disabling the Contao safe mode (see #<I>)
contao_contao
train
c1d8e0e74c75c94db3d5b30eb4759c3d0c967ed6
diff --git a/netmiko/ssh_autodetect.py b/netmiko/ssh_autodetect.py index <HASH>..<HASH> 100644 --- a/netmiko/ssh_autodetect.py +++ b/netmiko/ssh_autodetect.py @@ -13,6 +13,12 @@ from netmiko.ssh_dispatcher import ConnectHandler # 'dispatch' key is the SSHDetect method to call. dispatch key will be popped off dictionar...
Adding additional platforms; adding results cache
ktbyers_netmiko
train
cee7344ffd88746e8317db6de8e2b47104b383ed
diff --git a/floodestimation/tests/test_analysis_qmed.py b/floodestimation/tests/test_analysis_qmed.py index <HASH>..<HASH> 100644 --- a/floodestimation/tests/test_analysis_qmed.py +++ b/floodestimation/tests/test_analysis_qmed.py @@ -365,7 +365,7 @@ class TestQmedDonor(unittest.TestCase): ...
updated test to reflect "as urban" changes to qmed donor adjustment
OpenHydrology_floodestimation
train
588c4f8373702c666e6ff8cdd754409d6dc2f4b9
diff --git a/spec/integration/encrypted_attribute/search_helper.rb b/spec/integration/encrypted_attribute/search_helper.rb index <HASH>..<HASH> 100644 --- a/spec/integration/encrypted_attribute/search_helper.rb +++ b/spec/integration/encrypted_attribute/search_helper.rb @@ -69,7 +69,7 @@ describe Chef::EncryptedAttribu...
spec/integration/encrypted_attribute/search_helper.rb: fix RuboCop offense
zuazo_chef-encrypted-attributes
train
57d7aa078e0e2e6a0137f1788a4be7063686270b
diff --git a/src/Linna/Cache/DiskCache.php b/src/Linna/Cache/DiskCache.php index <HASH>..<HASH> 100644 --- a/src/Linna/Cache/DiskCache.php +++ b/src/Linna/Cache/DiskCache.php @@ -195,7 +195,7 @@ class DiskCache implements CacheInterface */ public function clear() { - array_map('unlink', glob($thi...
clear() file extension changed from * to php
linna_framework
train
542bfc4dea77f16ea553a8efd910a53de8acd885
diff --git a/lib/fog/aws/elb.rb b/lib/fog/aws/elb.rb index <HASH>..<HASH> 100644 --- a/lib/fog/aws/elb.rb +++ b/lib/fog/aws/elb.rb @@ -16,7 +16,7 @@ module Fog class ValidationError < Fog::Errors::Error; end requires :aws_access_key_id, :aws_secret_access_key - recognizes :region, :host...
[aws|elb] Add instrumentation support.
fog_fog
train
699cae0b7a178133372a38851192ac7a1d3f3aaf
diff --git a/lib/Alchemy/Phrasea/Databox/Record/LegacyRecordRepository.php b/lib/Alchemy/Phrasea/Databox/Record/LegacyRecordRepository.php index <HASH>..<HASH> 100644 --- a/lib/Alchemy/Phrasea/Databox/Record/LegacyRecordRepository.php +++ b/lib/Alchemy/Phrasea/Databox/Record/LegacyRecordRepository.php @@ -11,6 +11,7 @@...
Add RecordRepository method to look for several Record at once
alchemy-fr_Phraseanet
train
5ffcd79c21a22dfc188e1c5726b05dd428bb9b4e
diff --git a/mapstructure.go b/mapstructure.go index <HASH>..<HASH> 100644 --- a/mapstructure.go +++ b/mapstructure.go @@ -847,21 +847,21 @@ func (d *Decoder) decodeMapFromStruct(name string, dataVal reflect.Value, val re // Determine the name of the key in the map if index := strings.Index(tagValue, ","); index ...
add test for #<I>'s working case
mitchellh_mapstructure
train
aca9d219f96b6885be093d92fd3c37dc9473be3b
diff --git a/WeaveUISpark/src/weave/WeavePath.js b/WeaveUISpark/src/weave/WeavePath.js index <HASH>..<HASH> 100644 --- a/WeaveUISpark/src/weave/WeavePath.js +++ b/WeaveUISpark/src/weave/WeavePath.js @@ -2,6 +2,9 @@ function(objectID) { var weave = objectID ? document.getElementById(objectID) : document; + + ...
improved api behavior Change-Id: I<I>c<I>e8ae<I>e<I>a<I>de<I>b<I>c<I>abed<I>a3
WeaveTeam_WeaveJS
train
ee6c75e71cf407a61ef73966b0f85d7c89f9bd1e
diff --git a/pyuavcan/application/_node.py b/pyuavcan/application/_node.py index <HASH>..<HASH> 100644 --- a/pyuavcan/application/_node.py +++ b/pyuavcan/application/_node.py @@ -32,7 +32,7 @@ class Node: self._info = info self._heartbeat_publisher = pyuavcan.application.heartbeat_publisher.HeartbeatP...
MyPy fix and minor corrections
UAVCAN_pyuavcan
train
183fbab967cce7d6fc7ad61c26673928caef9322
diff --git a/packages/babel-plugin-transform-es2015-parameters/src/rest.js b/packages/babel-plugin-transform-es2015-parameters/src/rest.js index <HASH>..<HASH> 100644 --- a/packages/babel-plugin-transform-es2015-parameters/src/rest.js +++ b/packages/babel-plugin-transform-es2015-parameters/src/rest.js @@ -60,6 +60,12 @...
Fix some rest optimization errors. Commit message edited by @jmm.
babel_babel
train
d5aafe477c9b5532e1197df22d3a3c114569b56b
diff --git a/go/client/cmd_chat_featured_bots.go b/go/client/cmd_chat_featured_bots.go index <HASH>..<HASH> 100644 --- a/go/client/cmd_chat_featured_bots.go +++ b/go/client/cmd_chat_featured_bots.go @@ -9,6 +9,7 @@ import ( "github.com/keybase/client/go/libcmdline" "github.com/keybase/client/go/libkb" "github.com...
Allow emojis in description (#<I>)
keybase_client
train
6789e1cffb75df7a292069394975bdea52fffabc
diff --git a/lib/fog/rackspace/models/compute_v2/metadata.rb b/lib/fog/rackspace/models/compute_v2/metadata.rb index <HASH>..<HASH> 100644 --- a/lib/fog/rackspace/models/compute_v2/metadata.rb +++ b/lib/fog/rackspace/models/compute_v2/metadata.rb @@ -42,7 +42,7 @@ module Fog return nil unless key ...
[rackspace|compute] fixing typo in metadata class
fog_fog
train
98860b86199a4694f68e9ce2f19c8a38b89d0996
diff --git a/src/Composer/Command/ShowCommand.php b/src/Composer/Command/ShowCommand.php index <HASH>..<HASH> 100644 --- a/src/Composer/Command/ShowCommand.php +++ b/src/Composer/Command/ShowCommand.php @@ -560,7 +560,7 @@ EOT $matches[$index] = $package->getId(); } - $pool = $repositoryS...
Fix show command when no package is found
composer_composer
train
820252eb5a1d48495f9328ff9d632299591a6989
diff --git a/src/Service.php b/src/Service.php index <HASH>..<HASH> 100644 --- a/src/Service.php +++ b/src/Service.php @@ -309,7 +309,7 @@ abstract class Service if (!$this->uriFull) { $this->uriFull = $this->getUri(); - $methodArguments = $this->app->getRequest()->getUri()->segmentAr...
Use new request method() & uri() methods.
froq_froq-service
train
78e146dac8f0c56f8f29b2815eb9f5443f12f29b
diff --git a/framework/core/src/Post/PostPolicy.php b/framework/core/src/Post/PostPolicy.php index <HASH>..<HASH> 100644 --- a/framework/core/src/Post/PostPolicy.php +++ b/framework/core/src/Post/PostPolicy.php @@ -99,6 +99,7 @@ class PostPolicy extends AbstractPolicy ->from('discussions') ...
fixes #<I> - set default statement to block access - added tests to confirm all scenarios work as intended
flarum_core
train
11ddca92b9c6efa74ca498a807f39e88d2398581
diff --git a/lib/rails/generators/mongoid/model/templates/model.rb b/lib/rails/generators/mongoid/model/templates/model.rb index <HASH>..<HASH> 100644 --- a/lib/rails/generators/mongoid/model/templates/model.rb +++ b/lib/rails/generators/mongoid/model/templates/model.rb @@ -4,13 +4,11 @@ class <%= class_name %><%= " < ...
Model generator no longer adds blank lines to the model
mongodb_mongoid
train
c671e47ac9fc7f65bce864d2f78d98353ab0533d
diff --git a/src/frontend/org/voltdb/SnapshotCompletionInterest.java b/src/frontend/org/voltdb/SnapshotCompletionInterest.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/SnapshotCompletionInterest.java +++ b/src/frontend/org/voltdb/SnapshotCompletionInterest.java @@ -37,7 +37,7 @@ public interface Snapsh...
Tweak and integrate testability change to newly merged test case.
VoltDB_voltdb
train
dfa89eb214a6ae6b07a89b04a73be23e72d9299e
diff --git a/src/select/index.js b/src/select/index.js index <HASH>..<HASH> 100644 --- a/src/select/index.js +++ b/src/select/index.js @@ -3,11 +3,15 @@ const createGeometryClause = require('./geometry').createClause const createFieldsClause = require('./fields').createClause function createClause (options) { - if...
Remove geometry in SQL Select if option passed in request.
koopjs_winnow
train
8f828cb583949e3eaa63cd6f8f90ebb74b5b585f
diff --git a/lib/buoys/link.rb b/lib/buoys/link.rb index <HASH>..<HASH> 100644 --- a/lib/buoys/link.rb +++ b/lib/buoys/link.rb @@ -5,7 +5,7 @@ module Buoys CONFIG = { current_class: (Buoys::Config.current_class || 'active'), - link_current: (Buoys::Config.link_current || false), + link_current: ...
Fix ` Avoid comma after the last item of a hash.`
muryoimpl_buoys
train
3987bdcfe8a8d3cf24bec61ae69eb5c3ad490373
diff --git a/go/chat/inboxsource.go b/go/chat/inboxsource.go index <HASH>..<HASH> 100644 --- a/go/chat/inboxsource.go +++ b/go/chat/inboxsource.go @@ -317,9 +317,16 @@ func (s *localizer) localizeConversationsPipeline(ctx context.Context, uid grego // If a localize callback channel exists, send along the result ...
blast out chat UI calls for async inbox afap (#<I>)
keybase_client
train
13774a28d79206dbe15bed755fd54d58514297ff
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,10 @@ setup( # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html - install_requires=['six...
Update acceptable versions of cwltool Temporary solution for #<I>
NLeSC_scriptcwl
train
b08b6846e8705b8ddd2ee7aed61ab6822f0870be
diff --git a/keyring/backends/SecretService.py b/keyring/backends/SecretService.py index <HASH>..<HASH> 100644 --- a/keyring/backends/SecretService.py +++ b/keyring/backends/SecretService.py @@ -69,8 +69,9 @@ class Keyring(KeyringBackend): {"username": username, "service": service}) for item in it...
SecretService: fix the code for unlocking individual items The previous version wrongly checked the return value of Item.unlock(): that method returns a single boolean, not a tuple. This commit brings the code in sync with the code for unlocking collections.
jaraco_keyring
train
c087f48e787f464b150caf73342c087da941cebf
diff --git a/salt/utils/event.py b/salt/utils/event.py index <HASH>..<HASH> 100644 --- a/salt/utils/event.py +++ b/salt/utils/event.py @@ -584,12 +584,20 @@ class Reactor(multiprocessing.Process, salt.state.Compiler): salt.state.Compiler.__init__(self, opts) self.wrap = ReactWrap(self.opts) + ...
Added salt:// support to reactor file paths Closes #<I>
saltstack_salt
train
f669fc4e4201c0729a9276f1ab0da2f48643d7c4
diff --git a/titan-test/src/main/java/com/thinkaurelius/titan/diskstorage/KeyColumnValueStoreTest.java b/titan-test/src/main/java/com/thinkaurelius/titan/diskstorage/KeyColumnValueStoreTest.java index <HASH>..<HASH> 100644 --- a/titan-test/src/main/java/com/thinkaurelius/titan/diskstorage/KeyColumnValueStoreTest.java +...
Accidentally committed debugging changes to KeyColumnValueStoreTest. Reverting.
thinkaurelius_titan
train
ac7e5779c0b176bc0ad23a4ee332e468109aab99
diff --git a/src/accounts/views.py b/src/accounts/views.py index <HASH>..<HASH> 100644 --- a/src/accounts/views.py +++ b/src/accounts/views.py @@ -8,6 +8,7 @@ from django.views.generic import DetailView, UpdateView from django.utils.translation import ugettext as _ from django.shortcuts import render, redirect from ...
Only allowing user to edit his own profile
colab_colab
train
f54c3bdcd7525d3b92a66a6a37cc0745f4763c86
diff --git a/src/Billable.php b/src/Billable.php index <HASH>..<HASH> 100644 --- a/src/Billable.php +++ b/src/Billable.php @@ -367,7 +367,7 @@ trait Billable public function createAsBraintreeCustomer($token, array $options = []) { $response = BraintreeCustomer::create( - array_merge($optio...
Allow adding items under creditCard from $options Allow items below creditCard to be added from the $options array. E.g. billing address.
laravel_cashier-braintree
train
e7fc0be45b263baf60c43acd9ae032382bee357d
diff --git a/gobblin-core/src/main/java/gobblin/source/extractor/extract/jdbc/JdbcExtractor.java b/gobblin-core/src/main/java/gobblin/source/extractor/extract/jdbc/JdbcExtractor.java index <HASH>..<HASH> 100644 --- a/gobblin-core/src/main/java/gobblin/source/extractor/extract/jdbc/JdbcExtractor.java +++ b/gobblin-core/...
JDBC extractor correctly handles null blob fields. (#<I>)
apache_incubator-gobblin
train
5015013bddb7207d60f04f98d019f7d39bbf25e2
diff --git a/lib/neoscout/main.rb b/lib/neoscout/main.rb index <HASH>..<HASH> 100644 --- a/lib/neoscout/main.rb +++ b/lib/neoscout/main.rb @@ -3,6 +3,7 @@ require 'json' require 'httparty' require 'date' require 'active_model' +require 'active_support/inflector' module NeoScout @@ -16,6 +17,7 @@ module NeoScout...
Added support for pluralization/singularization of type names in the standalone tool
moviepilot_neoscout
train
e3d0e8dd171f9e037eb354bc5cbd3698b1c0b053
diff --git a/internal/service/glue/job.go b/internal/service/glue/job.go index <HASH>..<HASH> 100644 --- a/internal/service/glue/job.go +++ b/internal/service/glue/job.go @@ -53,7 +53,7 @@ func ResourceJob() *schema.Resource { Type: schema.TypeString, Optional: true, Computed: tr...
Add support for Python <I> in Pythonshell GLUE Job
terraform-providers_terraform-provider-aws
train
7a9286933113940f6de6ed29b91d2b8f969f37e8
diff --git a/insights/specs/__init__.py b/insights/specs/__init__.py index <HASH>..<HASH> 100644 --- a/insights/specs/__init__.py +++ b/insights/specs/__init__.py @@ -209,7 +209,6 @@ class Specs(SpecSet): messages = RegistryPoint() metadata_json = RegistryPoint(raw=True) mlx4_port = RegistryPoint() - ...
Remove unused and expensive modinfo data source. #<I>
RedHatInsights_insights-core
train
2b3e9fb52c1cbf13d99c332e279512b3893ca634
diff --git a/tasks/dart2js.js b/tasks/dart2js.js index <HASH>..<HASH> 100644 --- a/tasks/dart2js.js +++ b/tasks/dart2js.js @@ -51,7 +51,9 @@ module.exports = function(grunt) { } }, function (error, result, code) { - grunt.log.writeln("Error code:" + error); + if (error){ + grunt.log.writeln...
don't print consufing null error on successful build
atrauzzi_grunt-dart2js
train
42b8e7e3e216db74fda138d608d1466dd482bf6c
diff --git a/HARK/simulation.py b/HARK/simulation.py index <HASH>..<HASH> 100644 --- a/HARK/simulation.py +++ b/HARK/simulation.py @@ -30,9 +30,6 @@ def drawMeanOneLognormal(N, sigma=1.0, seed=0): T-length list of arrays of mean one lognormal draws each of size N, or a single array of size N (if sigma...
removing unneeded seed setting line from drawMeanOneLognormal
econ-ark_HARK
train
02f1e476b1342f805bd8efdc79d2ef97646e878f
diff --git a/blocking.py b/blocking.py index <HASH>..<HASH> 100644 --- a/blocking.py +++ b/blocking.py @@ -108,15 +108,17 @@ def trainBlocking(training_pairs, predicates, data_model, eta, epsilon) : return finalPredicateSet if __name__ == '__main__': - import dedupe + from dedupe import createTrainingPairs + f...
moved out canonicaldata test functions
dedupeio_dedupe
train
9fe30b98a1955c5bb12a87a396f892591a324faf
diff --git a/packages/babel-generator/src/generators/types.js b/packages/babel-generator/src/generators/types.js index <HASH>..<HASH> 100644 --- a/packages/babel-generator/src/generators/types.js +++ b/packages/babel-generator/src/generators/types.js @@ -124,7 +124,7 @@ export function NumericLiteral(node: Object) { ...
Remove "quotes" internal flag from babel-generator (#<I>)
babel_babel
train
0b254d632fb644219de3507e73689bb93e60cfe9
diff --git a/pypmc/tools/_plot.py b/pypmc/tools/_plot.py index <HASH>..<HASH> 100644 --- a/pypmc/tools/_plot.py +++ b/pypmc/tools/_plot.py @@ -4,7 +4,7 @@ _max_color = 0.9 def plot_mixture(mixture, i=0, j=1, center_style=dict(s=0.15), cmap='spectral', cutoff=0.0, ellipse_style=dict(alpha=0.3), - ...
[plot_mixture] add argument ``visualize_weights`` If ``visualize_weights=True`` coloring is based on component weights
fredRos_pypmc
train
ae1e9b22bf41d434c081c8ac9333d47d8f852936
diff --git a/src/main/java/com/axellience/vuegwt/client/component/options/CustomizeOptions.java b/src/main/java/com/axellience/vuegwt/client/component/options/CustomizeOptions.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/axellience/vuegwt/client/component/options/CustomizeOptions.java +++ b/src/main/java/co...
Make CustomizeOptions an interface instead of an abstract class
VueGWT_vue-gwt
train
83ae3bc7d8f149e0d30508fcd26751cd3b6969f2
diff --git a/lib/specinfra/backend/docker.rb b/lib/specinfra/backend/docker.rb index <HASH>..<HASH> 100644 --- a/lib/specinfra/backend/docker.rb +++ b/lib/specinfra/backend/docker.rb @@ -56,9 +56,11 @@ module Specinfra::Backend opts = { 'Image' => current_image.id } if current_image.json["Config"]["Cmd"...
Always pass OpenStdin to docker run.
mizzy_specinfra
train
d9b52204de7035f2b2b758758ba8d7e119a044b4
diff --git a/wikitextparser/template_test.py b/wikitextparser/template_test.py index <HASH>..<HASH> 100644 --- a/wikitextparser/template_test.py +++ b/wikitextparser/template_test.py @@ -51,7 +51,6 @@ class TemplateTest(unittest.TestCase): def test_normal_name(self): t = Template('{{ u |a}}') - h...
- help(t.normal_name)
5j9_wikitextparser
train
d61ad8c454f841846db8bc11a30853bd879d9be3
diff --git a/lib/bcx/resources/project.rb b/lib/bcx/resources/project.rb index <HASH>..<HASH> 100644 --- a/lib/bcx/resources/project.rb +++ b/lib/bcx/resources/project.rb @@ -4,6 +4,11 @@ module Bcx root :project resource :todolists, class_name: 'Bcx::Resources::Todolist' + + def archived! + ...
Add projects/archived endpoint
paulspringett_bcx
train
055b0dd47efca64079e4ba86a51076f41809bc14
diff --git a/lib/connection/connection.js b/lib/connection/connection.js index <HASH>..<HASH> 100644 --- a/lib/connection/connection.js +++ b/lib/connection/connection.js @@ -517,10 +517,21 @@ Connection.prototype.write = function(buffer) { } } - // Write out the command - if(!Array.isArray(buffer)) return ...
#<I> check for connection destroyed just before writing out
mongodb-js_mongodb-core
train
1a7acefdfac5169e173e2b221fec7458049c3021
diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/metrics/ReporterSetup.java b/flink-runtime/src/main/java/org/apache/flink/runtime/metrics/ReporterSetup.java index <HASH>..<HASH> 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/metrics/ReporterSetup.java +++ b/flink-runtime/src/main/ja...
[FLINK-<I>][metrics] Support loading reporters as plugins
apache_flink
train
c2613ed3da6b754cd2c789a7c9a491061a80ba61
diff --git a/container/lxd/initialisation_test.go b/container/lxd/initialisation_test.go index <HASH>..<HASH> 100644 --- a/container/lxd/initialisation_test.go +++ b/container/lxd/initialisation_test.go @@ -213,6 +213,11 @@ func (s *InitialiserSuite) TestDetectSubnet(c *gc.C) { } func (s *InitialiserSuite) TestDete...
lxd container type: skip local subnet test if no `ip` tool present centos doesn't have `ip` by default, so we can't test against the local network configuration since we can't query it.
juju_juju
train
13b78fea1fda2a3b5d7addcb05d7af92fb1ad328
diff --git a/rpcserver.go b/rpcserver.go index <HASH>..<HASH> 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -812,11 +812,12 @@ func (r *rpcServer) GetInfo(ctx context.Context, activeChannels += uint32(len(serverPeer.ChannelSnapshots())) } - pendingChannels, err := r.server.fundingMgr.NumPendingChannels() + pen...
rpcserver: lookup num pending channels from chanDB
lightningnetwork_lnd
train
56c42a359eb9e1e765b3ea610a4c6a37fbc2c812
diff --git a/tests/test_parsing.py b/tests/test_parsing.py index <HASH>..<HASH> 100644 --- a/tests/test_parsing.py +++ b/tests/test_parsing.py @@ -1,41 +1,37 @@ -import pytest +import json -@pytest.mark.asyncio -async def test_parsing_path_parameters(app): +def test_parsing_path_parameters(app): request, respo...
fix failed unittests in travis CI
yunstanford_sanic-transmute
train
d20c1c03cb6bc9b910ce85ceda9b09142c564982
diff --git a/src/Builder/FormContractor.php b/src/Builder/FormContractor.php index <HASH>..<HASH> 100644 --- a/src/Builder/FormContractor.php +++ b/src/Builder/FormContractor.php @@ -209,7 +209,7 @@ class FormContractor implements FormContractorInterface ]; if (isset($formOptions['by_reference'])) {...
Pass collection_by_reference instead of by_reference (#<I>) SonataAdmin updated the option name in order to avoid conflict with Symfony
sonata-project_SonataDoctrineMongoDBAdminBundle
train
d22e6ff16cc276a6cd5ad3174c241d6957804052
diff --git a/demo.js b/demo.js index <HASH>..<HASH> 100644 --- a/demo.js +++ b/demo.js @@ -22,6 +22,7 @@ for (var i = 0; i < 100; ++i) t.writeTrits(toTritmap9x14(-75), 9, 14, 0, 0); t.writeTrits(toTritmap9x14(fromUnicode('☺')), 9, 14, 0, 1); t.writeTrits(toTritmap9x14(-fromUnicode('X')), 9, 14, 0, 2); +t.writeTrits(...
Fix writeTrits rows other than zero, | operator precedence
thirdcoder_tritmapped-canvas
train
d20c420d6cdf571196250324b34fcc76650109da
diff --git a/httpclient/client_test.go b/httpclient/client_test.go index <HASH>..<HASH> 100644 --- a/httpclient/client_test.go +++ b/httpclient/client_test.go @@ -389,7 +389,7 @@ func TestHTTPClientGetReturnsErrorOnClientCallFailure(t *testing.T) { require.Nil(t, response) - assert.Equal(t, "Get : unsupported pro...
fix tests which failed because of go <I>
gojektech_heimdall
train
139baafba3ee11c5bf1d33f6b1d92db8c05361f1
diff --git a/areas_code.py b/areas_code.py index <HASH>..<HASH> 100755 --- a/areas_code.py +++ b/areas_code.py @@ -27,6 +27,7 @@ import logging import sys from elasticsearch import Elasticsearch, helpers +from elasticsearch.exceptions import NotFoundError from elasticsearch_dsl import Search from grimoire_elk.e...
Add write index creation if doesn't exist When using ncremental mode from scratch index is now automatically created if doesn't exist.
chaoss_grimoirelab-cereslib
train
82f814fdbd34d202a17e3c26a8f72966b64a141f
diff --git a/lib/parse/renderer.js b/lib/parse/renderer.js index <HASH>..<HASH> 100644 --- a/lib/parse/renderer.js +++ b/lib/parse/renderer.js @@ -146,5 +146,10 @@ GitBookRenderer.prototype.code = function(code, lang, escaped) { ); }; +GitBookRenderer.prototype.heading = function(text, level, raw) { + var id...
Fix #<I>: generate header id the same as github
GitbookIO_gitbook
train
5716d9c6d123fb1dde15f2bf8d1c30a34c309e59
diff --git a/tests/frontend/org/voltdb/regressionsuites/TestSubQueriesSuite.java b/tests/frontend/org/voltdb/regressionsuites/TestSubQueriesSuite.java index <HASH>..<HASH> 100644 --- a/tests/frontend/org/voltdb/regressionsuites/TestSubQueriesSuite.java +++ b/tests/frontend/org/voltdb/regressionsuites/TestSubQueriesSuit...
Fix the undertermistic order by result
VoltDB_voltdb
train
44fdb5512ad6a789a89ce4fc4a5e936dcfbaebb8
diff --git a/src/lib/HTTP/Response.php b/src/lib/HTTP/Response.php index <HASH>..<HASH> 100755 --- a/src/lib/HTTP/Response.php +++ b/src/lib/HTTP/Response.php @@ -73,12 +73,7 @@ class Response { if(!isset($this->headers["charset"])) $this->headers["charset"] = substr(strstr(strtok(";"), "="), 1); } - // parse...
decode then parse as json
cythral_reqc
train