hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
9fd10b56ba5ceece8d4251128556b9407cded39d
diff --git a/main.js b/main.js index <HASH>..<HASH> 100755 --- a/main.js +++ b/main.js @@ -353,7 +353,41 @@ const rpcMethods = { const res = []; if (localDevices[daemon]) { Object.keys(localDevices[daemon]).forEach(address => { - res.push({ADDRESS: address, VERSION: localDe...
fix HmIP listDevices response
hobbyquaker_homematic-manager
train
e22046a2b7bac4bc170bf572d941ece9fd03fa0f
diff --git a/lib/oauth/client/helper.rb b/lib/oauth/client/helper.rb index <HASH>..<HASH> 100644 --- a/lib/oauth/client/helper.rb +++ b/lib/oauth/client/helper.rb @@ -29,11 +29,13 @@ module OAuth::Client def oauth_parameters { + 'oauth_callback' => options[:oauth_callback], 'oauth_...
first pass at supporting <I>a
oauth-xx_oauth-ruby
train
eff378b5c5ecfccb3218e4b2d9fd2e6f8ce58adb
diff --git a/src/server/pachyderm_test.go b/src/server/pachyderm_test.go index <HASH>..<HASH> 100644 --- a/src/server/pachyderm_test.go +++ b/src/server/pachyderm_test.go @@ -3836,6 +3836,9 @@ func TestPodSpecOpts(t *testing.T) { }, }, SchedulingSpec: &pps.SchedulingSpec{ + // This NodeSelector will cau...
Adds comment explaining node selector test.
pachyderm_pachyderm
train
82ddb8342d80f3a77d4aa323aa747ed90aab358f
diff --git a/khard/address_book.py b/khard/address_book.py index <HASH>..<HASH> 100644 --- a/khard/address_book.py +++ b/khard/address_book.py @@ -1,6 +1,11 @@ # -*- coding: utf-8 -*- +import glob +import logging import os +import re + +from .carddav_object import CarddavObject class AddressBook: @@ -23,5 +28,...
Move vcard file search to address_book.AddressBook The Config class does not need to know of the internal layout of the AddressBook. The AddressBook class will manage the loaded state and the internal loading of the data itself.
scheibler_khard
train
2572cbab027abf766d183d7abc58b0d92ea88487
diff --git a/json-path/src/main/java/com/jayway/jsonpath/internal/path/PathCompiler.java b/json-path/src/main/java/com/jayway/jsonpath/internal/path/PathCompiler.java index <HASH>..<HASH> 100644 --- a/json-path/src/main/java/com/jayway/jsonpath/internal/path/PathCompiler.java +++ b/json-path/src/main/java/com/jayway/js...
Property must be separated by commas
json-path_JsonPath
train
b0b251401417a54c41a771f843d0eb6e91f4ee07
diff --git a/libre/apps/data_drivers/tests.py b/libre/apps/data_drivers/tests.py index <HASH>..<HASH> 100644 --- a/libre/apps/data_drivers/tests.py +++ b/libre/apps/data_drivers/tests.py @@ -11,11 +11,16 @@ from .models import SourceCSV, SourceFixedWidth class SourceTestCase(TestCase): def setUp(self): o...
Improve data_drivers app test units
commonwealth-of-puerto-rico_libre
train
2d05a577b0a16e07a86892c820144cb177776fd3
diff --git a/src/toil/job.py b/src/toil/job.py index <HASH>..<HASH> 100644 --- a/src/toil/job.py +++ b/src/toil/job.py @@ -397,7 +397,7 @@ class Job(object): #the file itself is deleted. The fileHandle itself should persist #while we maintain the open file handle ...
Adding a fix to lack of concurrency between successors created within a run method and successors created earlier (either statically or in a predecessors run method).
DataBiosphere_toil
train
20eb6ed2b8b0392c07cb65a971cdb2065c6060b0
diff --git a/cmd/flarectl/flarectl.go b/cmd/flarectl/flarectl.go index <HASH>..<HASH> 100644 --- a/cmd/flarectl/flarectl.go +++ b/cmd/flarectl/flarectl.go @@ -199,6 +199,10 @@ func main() { Name: "files", Usage: "a list of [exact] URLs to purge", }, + &cli.StringSliceFlag{ + Name: "p...
add prefixes as cli option
cloudflare_cloudflare-go
train
b45b8e69f907c31d10b71fab38c4ac6bfcc566ee
diff --git a/environs/imagemetadata/simplestreams.go b/environs/imagemetadata/simplestreams.go index <HASH>..<HASH> 100644 --- a/environs/imagemetadata/simplestreams.go +++ b/environs/imagemetadata/simplestreams.go @@ -241,7 +241,7 @@ func (metadata *indexMetadata) hasProduct(prodIds []string) bool { type indexMetadat...
Review change: don't quote 'true' in comment.
juju_juju
train
2a190cb76234db11837c7022f9c861a743c43bae
diff --git a/src/lib/fields/taxonomy.php b/src/lib/fields/taxonomy.php index <HASH>..<HASH> 100644 --- a/src/lib/fields/taxonomy.php +++ b/src/lib/fields/taxonomy.php @@ -126,7 +126,7 @@ function papi_update_term_field( $term_id = null, $slug = null, $value = null ) * @param string $slug * @param mixed $default ...
Fix naming of `the_papi_term_field` function
wp-papi_papi
train
0379c51fb503ade741d5dc282074fbe107fb493f
diff --git a/relationships/__init__.py b/relationships/__init__.py index <HASH>..<HASH> 100644 --- a/relationships/__init__.py +++ b/relationships/__init__.py @@ -0,0 +1 @@ +VERSION = (0, 1, 0) diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,39 +1,30 @@ import os -from ...
Adding version info and cleaning up the setup.py
coleifer_django-relationships
train
705f87215ba2b0649fdbfb128feb1003f16b1845
diff --git a/zipline/pipeline/engine.py b/zipline/pipeline/engine.py index <HASH>..<HASH> 100644 --- a/zipline/pipeline/engine.py +++ b/zipline/pipeline/engine.py @@ -122,31 +122,32 @@ class SimplePipelineEngine(object): The algorithm implemented here can be broken down into the following stages: - ...
DOC: Update engine docstrings.
quantopian_zipline
train
c16061d4038088d742bc2d6f44528bd00a5aa6d5
diff --git a/src/Illuminate/Queue/Queue.php b/src/Illuminate/Queue/Queue.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Queue/Queue.php +++ b/src/Illuminate/Queue/Queue.php @@ -76,14 +76,13 @@ abstract class Queue * * @param string $job * @param mixed $data - * @param string $queue ...
remove redundant argument queue from createPayload (#<I>)
laravel_framework
train
0fa25dbb5834d28ff2e41b6f9b0296476779a8da
diff --git a/salt/states/npm.py b/salt/states/npm.py index <HASH>..<HASH> 100644 --- a/salt/states/npm.py +++ b/salt/states/npm.py @@ -145,25 +145,25 @@ def installed(name, pkgs_to_install.append(pkg) continue - if pkg_name not in installed_pkgs: + if (pkg_name not in installed...
Fixed issue #<I> in <I> branch
saltstack_salt
train
f16bc84ec971b149fcd2d3e55d9bd09fa11c72b5
diff --git a/lib/nuggets/util/cli.rb b/lib/nuggets/util/cli.rb index <HASH>..<HASH> 100644 --- a/lib/nuggets/util/cli.rb +++ b/lib/nuggets/util/cli.rb @@ -158,7 +158,11 @@ module Util end def load_config(file = options[:config] || defaults[:config]) - @config = ::YAML.load_file(file) if ::File.readable...
lib/nuggets/util/cli.rb (load_config): Abort if specified file wasn't found.
blackwinter_nuggets
train
074e93c04f20c6cd5861d52f4842594dc8ca422e
diff --git a/tests/test_pono.py b/tests/test_pono.py index <HASH>..<HASH> 100644 --- a/tests/test_pono.py +++ b/tests/test_pono.py @@ -40,6 +40,9 @@ def test_pono(config_data): # Create solver/interpolator solver = ss.create_msat_solver(False) itp = ss.create_msat_interpolator() + # set solver options...
Simplify config_en logic, set solver options earlier
leonardt_fault
train
2999c6d2d60c8d5826ddf4bf521f28e5b20e2cc2
diff --git a/GPy/kern/sympykern.py b/GPy/kern/sympykern.py index <HASH>..<HASH> 100644 --- a/GPy/kern/sympykern.py +++ b/GPy/kern/sympykern.py @@ -47,8 +47,8 @@ class spkern(kernpart): self.set_param(param) #Differentiate! - self._sp_dk_dtheta = [sp.diff(k,theta) for theta in self._sp_theta] ...
forced simplification of sympy expressions before converting to c++
SheffieldML_GPy
train
42892ed2a079111f2db3d1ee62343cef64807666
diff --git a/statics/src/main/java/com/codeborne/selenide/Selenide.java b/statics/src/main/java/com/codeborne/selenide/Selenide.java index <HASH>..<HASH> 100644 --- a/statics/src/main/java/com/codeborne/selenide/Selenide.java +++ b/statics/src/main/java/com/codeborne/selenide/Selenide.java @@ -114,8 +114,8 @@ public cl...
rename `in` -> `using` to make it usable in Kotlin
selenide_selenide
train
45cfa43b3f37cd71dba1a2f3d848a278a422af59
diff --git a/symbols/funcdecl.py b/symbols/funcdecl.py index <HASH>..<HASH> 100644 --- a/symbols/funcdecl.py +++ b/symbols/funcdecl.py @@ -34,6 +34,15 @@ class SymbolFUNCDECL(Symbol): self.entry.locals_size = value @property + def local_symbol_table(self): + return self.entry.local_symbol_tabl...
Adds local_symbol_table getter & setter. This property is mapped on the entry field.
boriel_zxbasic
train
036bae785827ddc8b8b6ecc854b9b4530729c0ff
diff --git a/spec/rails/relationship_validation_spec.rb b/spec/rails/relationship_validation_spec.rb index <HASH>..<HASH> 100644 --- a/spec/rails/relationship_validation_spec.rb +++ b/spec/rails/relationship_validation_spec.rb @@ -97,27 +97,26 @@ describe "Neo4j::Rails::Model#validates_associated" do it "does ...
fixed failing spec [#<I>]
neo4jrb_neo4j
train
526a2331cc2cca5939890dbde7de557ef094b859
diff --git a/src/components/progressBar/index.js b/src/components/progressBar/index.js index <HASH>..<HASH> 100644 --- a/src/components/progressBar/index.js +++ b/src/components/progressBar/index.js @@ -40,13 +40,28 @@ export default class ProgressBar extends BaseComponent { progressBackgroundColor: Colors.dark10 ...
Adding accessibility support (#<I>)
wix_react-native-ui-lib
train
5c884c7797996a3e614e29d40c5dca9e5e29c9a0
diff --git a/raft/node_test.go b/raft/node_test.go index <HASH>..<HASH> 100644 --- a/raft/node_test.go +++ b/raft/node_test.go @@ -96,7 +96,7 @@ func TestBlockProposal(t *testing.T) { errc <- n.Propose(context.TODO(), []byte("somedata")) }() - mustEnoughSched() + forceGoSched() select { case err := <-errc: ...
raft: better comment and naming
etcd-io_etcd
train
1d7e74cbf088b3ff429446ca0d02dba525c846a5
diff --git a/python/vaex/webserver.py b/python/vaex/webserver.py index <HASH>..<HASH> 100644 --- a/python/vaex/webserver.py +++ b/python/vaex/webserver.py @@ -196,14 +196,15 @@ class ListHandler(tornado.web.RequestHandler): dataset = self.datasets_map[dataset_name] if dataset.mask is not None: ...
if fraction is set, don't use auto_fraction
vaexio_vaex
train
4839443cc45b6b651cfa5eb26339ee2e5854f988
diff --git a/pylivetrader/backend/alpaca.py b/pylivetrader/backend/alpaca.py index <HASH>..<HASH> 100644 --- a/pylivetrader/backend/alpaca.py +++ b/pylivetrader/backend/alpaca.py @@ -526,7 +526,6 @@ class Backend(BaseBackend): to=end_dt, limit=bar_count) - df = pd.concat(dfs, axis=1) ...
we do the concat in an inner method
alpacahq_pylivetrader
train
7c66e6f1c482dfac1ea6775e308c75899e9ad00d
diff --git a/src/Symfony/Component/Config/CHANGELOG.md b/src/Symfony/Component/Config/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Config/CHANGELOG.md +++ b/src/Symfony/Component/Config/CHANGELOG.md @@ -1,6 +1,11 @@ CHANGELOG ========= +5.0.0 +----- + * Dropped support for constructing a `Tr...
[Config] remove the root method and the nullable name
symfony_symfony
train
22d8c4cbe92f4611b3e780fe9a91ff6e98649233
diff --git a/moment/nrmoment.js b/moment/nrmoment.js index <HASH>..<HASH> 100644 --- a/moment/nrmoment.js +++ b/moment/nrmoment.js @@ -55,21 +55,18 @@ module.exports = function(RED) { msg.topic = node.topic; } // If nodes topic is blank, the input msg.topic is already there -...
Update nrmoment.js Handle multi level output property request (e.g. msg.payload.something) and change input handling so that blank input property gives NOW as the output.
TotallyInformation_node-red-contrib-moment
train
3588aee76af4d56e5f24ca9da9d17bcd32cc73e1
diff --git a/log.go b/log.go index <HASH>..<HASH> 100644 --- a/log.go +++ b/log.go @@ -81,6 +81,10 @@ func SetupLoggingLong(lvl string) { SetLogger(log.New(os.Stderr, "", log.LstdFlags|log.Llongfile|log.Lmicroseconds), strings.ToLower(lvl)) } +func SetupLoggingFile(f *os.File, lvl string) { + SetLogger(log.New(f, ...
Fixing test which was gutted for some reason. Validates that a logger passed a file actually writes to it.
araddon_gou
train
a110a0f31417d32cfbadd9ed4fd0bc1c92fc975a
diff --git a/src/LaravelViewBinder.php b/src/LaravelViewBinder.php index <HASH>..<HASH> 100644 --- a/src/LaravelViewBinder.php +++ b/src/LaravelViewBinder.php @@ -17,21 +17,21 @@ class LaravelViewBinder implements ViewBinder /** * The name of the view to bind any * generated JS variables to. - * +...
Another refactor of view binder
laracasts_PHP-Vars-To-Js-Transformer
train
dee6dab6c125296bb07f140dc27b1372fd907aff
diff --git a/lib/ransack/helpers/form_helper.rb b/lib/ransack/helpers/form_helper.rb index <HASH>..<HASH> 100644 --- a/lib/ransack/helpers/form_helper.rb +++ b/lib/ransack/helpers/form_helper.rb @@ -77,7 +77,8 @@ module Ransack Array(field_name) end - label = if ! args.first.try(:is_a?, Has...
Helpers::FormHelper: clean up, extract method, rename.
activerecord-hackery_ransack
train
dc874102228a3cf1dbcfae02327c888316695e7f
diff --git a/lib/arjdbc/postgresql/adapter.rb b/lib/arjdbc/postgresql/adapter.rb index <HASH>..<HASH> 100644 --- a/lib/arjdbc/postgresql/adapter.rb +++ b/lib/arjdbc/postgresql/adapter.rb @@ -136,22 +136,22 @@ module ArJdbc # Maps logical Rails types to PostgreSQL-specific data types. def type_to_sql(type, l...
adjust postgres' type_to_sql to mirror AR (<I>) version
jruby_activerecord-jdbc-adapter
train
594d44ee36bb43f682fd20f3fa074d81a1f51ce1
diff --git a/generator/lib/builder/util/StandardEnglishPluralizer.php b/generator/lib/builder/util/StandardEnglishPluralizer.php index <HASH>..<HASH> 100644 --- a/generator/lib/builder/util/StandardEnglishPluralizer.php +++ b/generator/lib/builder/util/StandardEnglishPluralizer.php @@ -15,6 +15,7 @@ require_once dirnam...
Added missing link to the StandardEnglishPluralizer class
propelorm_Propel
train
247cff6c8cf2c8bd2a4c0ef00b472ca14afd563c
diff --git a/autopep8.py b/autopep8.py index <HASH>..<HASH> 100755 --- a/autopep8.py +++ b/autopep8.py @@ -2105,6 +2105,10 @@ def line_shortening_rank(candidate, newline, indent_word): if current_line.endswith('%'): rank -= 20 + + # Try to break list comprehensions at the "for...
Prefer to break long list comprehensions at "for" Anythings else is fairly ugly.
hhatto_autopep8
train
6d2d15b628ed702950ea8e3d1d2ad8ea53374265
diff --git a/src/Projection/PDOEventStoreProjectionTrait.php b/src/Projection/PDOEventStoreProjectionTrait.php index <HASH>..<HASH> 100644 --- a/src/Projection/PDOEventStoreProjectionTrait.php +++ b/src/Projection/PDOEventStoreProjectionTrait.php @@ -20,7 +20,7 @@ trait PDOEventStoreProjectionTrait { $sql...
null => NULL in SQL
prooph_pdo-event-store
train
ea8a57f19357bb1a4ce6f1ce1c1893c971cb6f28
diff --git a/components/SegmentedView/SegmentedView.js b/components/SegmentedView/SegmentedView.js index <HASH>..<HASH> 100644 --- a/components/SegmentedView/SegmentedView.js +++ b/components/SegmentedView/SegmentedView.js @@ -76,17 +76,13 @@ export default class SegmentedView extends Component { if (index == this...
fix scrollToPage bug, for SegmentedView and SegmentedBarExample
rilyu_teaset
train
a0849a7325b7309af61681bcc62c16bc99f98074
diff --git a/war/src/main/webapp/scripts/hudson-behavior.js b/war/src/main/webapp/scripts/hudson-behavior.js index <HASH>..<HASH> 100644 --- a/war/src/main/webapp/scripts/hudson-behavior.js +++ b/war/src/main/webapp/scripts/hudson-behavior.js @@ -1728,29 +1728,15 @@ var radioBlockSupport = { // update one block ...
Improve performance of expand for radioBlock button. - Loop only on tags between block-start and block-end - Clearer and shorter code
jenkinsci_jenkins
train
734b98fdeb73215ca96ccd6bd756ee22f24fa4f1
diff --git a/src/Gzero/Core/Repositories/RouteReadRepository.php b/src/Gzero/Core/Repositories/RouteReadRepository.php index <HASH>..<HASH> 100644 --- a/src/Gzero/Core/Repositories/RouteReadRepository.php +++ b/src/Gzero/Core/Repositories/RouteReadRepository.php @@ -1,7 +1,7 @@ <?php namespace Gzero\Core\Repositories;...
Added build unique path method to route read repository
GrupaZero_core
train
b61e3d58d796761890ab507f3fc95faf67ea89b5
diff --git a/cli/lib/kontena/cli/master/config/get_command.rb b/cli/lib/kontena/cli/master/config/get_command.rb index <HASH>..<HASH> 100644 --- a/cli/lib/kontena/cli/master/config/get_command.rb +++ b/cli/lib/kontena/cli/master/config/get_command.rb @@ -12,16 +12,14 @@ module Kontena::Cli::Master::Config option...
Make kontena master ssh work without server.provider set (#<I>) * Don't require server.provider when doing kontena master ssh * Remove config get --return since master ssh does not use it any more * Kontena.run debug message was missing closing parenthesis * Say "master" instead of "node"
kontena_kontena
train
610063fae6a056a8cb0499008295206de4001848
diff --git a/termbox_label.go b/termbox_label.go index <HASH>..<HASH> 100644 --- a/termbox_label.go +++ b/termbox_label.go @@ -25,6 +25,9 @@ func (i *Label) IsTabSkipped() bool { return true } +// This doesn't do anything for a label +func (i *Label) SetTabSkip(b bool) {} + // GetID returns this control's ID fun...
Label needs SetTabSkip
br0xen_termbox-util
train
68a909ae8f17177ef5a64e0042f9252de056b815
diff --git a/test/test_ping.rb b/test/test_ping.rb index <HASH>..<HASH> 100644 --- a/test/test_ping.rb +++ b/test/test_ping.rb @@ -71,10 +71,12 @@ module CronForGithub @ping.decide_cron_ref('any', :ping).start_with?('heads/any/') end end - test 'call reserved ref' do + test 'call re...
chore(ping): fix test case
packsaddle_ruby-cron_for_github
train
4ecc4e17fc779670a3d74142971695c8a7184027
diff --git a/can-define.js b/can-define.js index <HASH>..<HASH> 100644 --- a/can-define.js +++ b/can-define.js @@ -54,7 +54,11 @@ if(process.env.NODE_ENV !== 'production') { value: "set "+canReflect.getName(obj) + "."+prop }); } - return Object.defineProperty(obj, prop, definition); + var desc = Object...
Fixes #<I>. Can-define special-keys assignment now does not throw an error
canjs_can-define
train
d83f385359aa6bbb04bc1bb9c6784719f36d56f9
diff --git a/tests/api_tests/__init__.py b/tests/api_tests/__init__.py index <HASH>..<HASH> 100644 --- a/tests/api_tests/__init__.py +++ b/tests/api_tests/__init__.py @@ -46,7 +46,7 @@ def import_tests(dir, module): m = import_module(".".join((module, file[:-3])), "tests.api_tests") de...
support 'typing.Union no __name__'
ricequant_rqalpha
train
224a107e89ae397364b98bee7e4c357ccc1e53f5
diff --git a/cmd/tsuru-base/apps_test.go b/cmd/tsuru-base/apps_test.go index <HASH>..<HASH> 100644 --- a/cmd/tsuru-base/apps_test.go +++ b/cmd/tsuru-base/apps_test.go @@ -8,7 +8,7 @@ import ( "bytes" "encoding/json" "github.com/globocom/tsuru/cmd" - "github.com/globocom/tsuru/testing" + "github.com/globocom/tsuru...
cmd/tsuru-base: use cmd/testing instead of testing
tsuru_tsuru
train
f09b6daf658395396745f71ca462f6c7cbcdcf53
diff --git a/packages/soya-next-scripts/scripts/start.js b/packages/soya-next-scripts/scripts/start.js index <HASH>..<HASH> 100644 --- a/packages/soya-next-scripts/scripts/start.js +++ b/packages/soya-next-scripts/scripts/start.js @@ -23,6 +23,7 @@ const buildSoya = require('./utils/build-soya'); app.prepare() .t...
Fix soya not served in production
traveloka_soya-next
train
3b8f4c144e8b7ad984040ae42204db6b54a85c4a
diff --git a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java index <HASH>..<HASH> 100644 --- a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java +++ b/smack-tcp/src/main/java/org/jivesoftware/sm...
Add missing space in log statement within XMPPTCPConnection
igniterealtime_Smack
train
2d9cd17a9d0450f409a6e8dd9d06cd2b4ef413fc
diff --git a/jest.config.js b/jest.config.js index <HASH>..<HASH> 100644 --- a/jest.config.js +++ b/jest.config.js @@ -10,7 +10,7 @@ const basicConfig = { ], setupFilesAfterEnv: ["<rootDir>/jest.testFramework.js"], moduleNameMapper: { - "\\.(css|jpg|png)$": "<rootDir>/empty-module.js", + "\\.(css|jpg|png...
test: add mock svg file imports
CraveFood_farmblocks
train
46a71bd6481d35b3f1d05ee1e8edbeb6f32aae7c
diff --git a/http/logical_test.go b/http/logical_test.go index <HASH>..<HASH> 100644 --- a/http/logical_test.go +++ b/http/logical_test.go @@ -85,6 +85,10 @@ func TestLogical_StandbyRedirect(t *testing.T) { t.Fatalf("unseal err: %s", err) } + // Attempt to fix raciness in this test by giving the first core a cha...
Add a sleep in the RedirectStandby test to try to fix raciness
hashicorp_vault
train
590928d699ba543bd087cfbcc86b3aa82d564db6
diff --git a/foyer/forcefield.py b/foyer/forcefield.py index <HASH>..<HASH> 100755 --- a/foyer/forcefield.py +++ b/foyer/forcefield.py @@ -128,7 +128,7 @@ def _topology_from_parmed(structure, non_element_types): chain = topology.addChain() omm_residue = topology.addResidue(pmd_residue.name, chain) ...
Track residue idx, not number, and fix typos
mosdef-hub_foyer
train
e18f342e4e75cc4768d92b5afb32b42c03d2c2ae
diff --git a/lib/panomosity/runner.rb b/lib/panomosity/runner.rb index <HASH>..<HASH> 100644 --- a/lib/panomosity/runner.rb +++ b/lib/panomosity/runner.rb @@ -298,10 +298,35 @@ module Panomosity control_point = vertical_control_points_of_pair.first end + x_diff = control_p...
Add 3 separate control points when fixing unconnected pairs. Separate them to help roll standardization
elevatesystems_panomosity
train
4f4c729382c60bfcd6322e44eb6fde98d73746ce
diff --git a/fabfile.py b/fabfile.py index <HASH>..<HASH> 100644 --- a/fabfile.py +++ b/fabfile.py @@ -32,7 +32,7 @@ def create_rst_doc(): def clean(): create_rst_doc() local("python setup.py clean") - local("rm coursera_dl.egg-info htmlcov build -rf") + local("rm -rf coursera.egg-info htmlcov build di...
fabfile: Improve the cleaning target of fabfile. Some files were missed and, aesthetically, I also prefer the switches to `rm` to be specified before the list of files.
coursera-dl_coursera-dl
train
cf295868dc5be8a4b686b1bd10591b86b29144cf
diff --git a/alerta/server/database.py b/alerta/server/database.py index <HASH>..<HASH> 100644 --- a/alerta/server/database.py +++ b/alerta/server/database.py @@ -18,10 +18,17 @@ class Mongo(object): # Connect to MongoDB try: - self.conn = pymongo.MongoClient(CONF.mongo_host, CONF.mongo_p...
support pymongo < <I>
alerta_alerta
train
5d49c19d3bec2330de0b63746ac6abef28b593bc
diff --git a/jquery.fileupload-ui.js b/jquery.fileupload-ui.js index <HASH>..<HASH> 100644 --- a/jquery.fileupload-ui.js +++ b/jquery.fileupload-ui.js @@ -197,6 +197,7 @@ }); }); } else { + that._adjustMaxNumberOfFiles(1); ...
Update max number of files when removing a file without specifying a url.
blueimp_jQuery-File-Upload
train
c073f640e20f74dd37542db324f20a77566bb8fb
diff --git a/webapp/src/main/java/org/apache/hadoop/metadata/web/resources/TypesResource.java b/webapp/src/main/java/org/apache/hadoop/metadata/web/resources/TypesResource.java index <HASH>..<HASH> 100755 --- a/webapp/src/main/java/org/apache/hadoop/metadata/web/resources/TypesResource.java +++ b/webapp/src/main/java/o...
BUG-<I> create a type return can be improved to return better json
apache_incubator-atlas
train
ff1e16230b30b7598ca507059476062ee87da8a0
diff --git a/linkcheck/director/__init__.py b/linkcheck/director/__init__.py index <HASH>..<HASH> 100644 --- a/linkcheck/director/__init__.py +++ b/linkcheck/director/__init__.py @@ -18,7 +18,6 @@ Management of checking a queue of links with several threads. """ import time -import signal import linkcheck import l...
wait until status thread is finished git-svn-id: <URL>
wummel_linkchecker
train
3371e4ef9026016473a133af313af34c2b9dcd36
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -149,7 +149,7 @@ if __name__ == "__main__": extras_require = { # Default requirement based on system type ":platform_system=='Linux' or platform_system=='Darwin'": - ["pycapnp==0.5.12"], + ["py...
NUP-<I>: Upgrade pycapnp to <I>
numenta_nupic
train
7fc8f56f63f8cadee1d3a5c84e7064eb4ed6c5c9
diff --git a/crypto/salsa.go b/crypto/salsa.go index <HASH>..<HASH> 100644 --- a/crypto/salsa.go +++ b/crypto/salsa.go @@ -18,7 +18,6 @@ type SalsaStream struct { State []uint32 blockUsed int block []byte - counterWords [2]uint32 currentBlock []byte } @@ -47,9 +46,9 @@ func NewSalsaStream(ke...
Drop counter from SalsaStream It is not really used anywhere
tobischo_gokeepasslib
train
93cb7877aa9c270ec931bfe46c8299b0de7b2637
diff --git a/python_terraform/terraform.py b/python_terraform/terraform.py index <HASH>..<HASH> 100644 --- a/python_terraform/terraform.py +++ b/python_terraform/terraform.py @@ -456,6 +456,13 @@ class Terraform: """ return self.cmd("workspace", "show", **kwargs) + def list_workspace(self) -> Lis...
Added support for getting list of workspaces
beelit94_python-terraform
train
f22600aa20c157304368b32ac97011a729ae9abb
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ CHANGELOG for 0.9.0 RC ====================== +2.4.1 (13.08.2019) +----- +- CS: @invisible renamed to @internal + 2.4.0 (29.07.2019) ----- - added support for composite FKs diff --git a/src...
- CS: @invisible renamed to @internal
spiral_database
train
0938ab654a99fd42b892bb10483e4c40ae05e282
diff --git a/src/ol/control/attributioncontrol.js b/src/ol/control/attributioncontrol.js index <HASH>..<HASH> 100644 --- a/src/ol/control/attributioncontrol.js +++ b/src/ol/control/attributioncontrol.js @@ -312,8 +312,7 @@ ol.control.Attribution.prototype.insertLogos_ = function(frameState) { logoElement = ima...
Remove target attribute on attributions link
openlayers_openlayers
train
445e06f8b3e73700cad29a515349b65c77382304
diff --git a/dockermap/map/config/__init__.py b/dockermap/map/config/__init__.py index <HASH>..<HASH> 100644 --- a/dockermap/map/config/__init__.py +++ b/dockermap/map/config/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -from collections import namedtuple +from collections import namedtuple, OrderedDict impo...
Added field order to ConfigurationProperty elements.
merll_docker-map
train
ed4d8acceda683dcd9afaeb0324716dc1da1bde0
diff --git a/restcomm/restcomm.interpreter/src/main/java/org/mobicents/servlet/restcomm/interpreter/BaseVoiceInterpreter.java b/restcomm/restcomm.interpreter/src/main/java/org/mobicents/servlet/restcomm/interpreter/BaseVoiceInterpreter.java index <HASH>..<HASH> 100644 --- a/restcomm/restcomm.interpreter/src/main/java/o...
RESTCOMM-<I> #Comment fix for minor bug in the gather
RestComm_Restcomm-Connect
train
606ef8008a8c1be00c5c2f68f87c0a71702d5309
diff --git a/generate.py b/generate.py index <HASH>..<HASH> 100644 --- a/generate.py +++ b/generate.py @@ -57,8 +57,6 @@ def run(): with open('nnpy/nanomsg.h', 'w') as f: f.write(headers) with open('nnpy/constants.py', 'w') as f: - f.write('import sys\n') - f.write('NN_MSG = sys.maxsize * 2 + 1\n\n') f.writ...
Use a more reliable way of defining NN_MSG
nanomsg_nnpy
train
53eb2ea087ef8f5df3d9017de35a547c6c0d9fa7
diff --git a/lib/Doctrine/Import/Schema.php b/lib/Doctrine/Import/Schema.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/Import/Schema.php +++ b/lib/Doctrine/Import/Schema.php @@ -210,19 +210,7 @@ class Doctrine_Import_Schema */ public function getRelations($properties) { - $all_relations = is...
revert change because it was breaking something else...needs to think of another way to do this.
doctrine_orm
train
4852859485f5479aa00c6b05b5baf0e92667b586
diff --git a/code/tasks/SolrReindexTask.php b/code/tasks/SolrReindexTask.php index <HASH>..<HASH> 100644 --- a/code/tasks/SolrReindexTask.php +++ b/code/tasks/SolrReindexTask.php @@ -78,7 +78,7 @@ class SolrReindexTask extends BuildTask // Appropriately index the current page, taking versioning into account. ...
fix(ReindexTask) Better detection of Versioned for older SS
nyeholt_silverstripe-solr
train
010bf86d0c1423f4220871dcb58da4683fd671c0
diff --git a/pkg/cmd/admin/node/evacuate.go b/pkg/cmd/admin/node/evacuate.go index <HASH>..<HASH> 100644 --- a/pkg/cmd/admin/node/evacuate.go +++ b/pkg/cmd/admin/node/evacuate.go @@ -85,7 +85,7 @@ func (e *EvacuateOptions) RunEvacuate(node *kapi.Node) error { fieldSelector := fields.Set{GetPodHostFieldLabel(node.Type...
Make evacuate aware of replica set and daemon set
openshift_origin
train
69cf3ec2a1bfcfd02758f5417fc1d08979d49a92
diff --git a/src/BoomCMS/Core/Controllers/CMS/Assets/AssetManager.php b/src/BoomCMS/Core/Controllers/CMS/Assets/AssetManager.php index <HASH>..<HASH> 100644 --- a/src/BoomCMS/Core/Controllers/CMS/Assets/AssetManager.php +++ b/src/BoomCMS/Core/Controllers/CMS/Assets/AssetManager.php @@ -155,13 +155,13 @@ class AssetMana...
Ensure files uploaded when replacing an asset are supported asset types
boomcms_boom-core
train
dd1be4ba6e910d0acdcbf75e136e638132850620
diff --git a/slackclient/slackrequest.py b/slackclient/slackrequest.py index <HASH>..<HASH> 100644 --- a/slackclient/slackrequest.py +++ b/slackclient/slackrequest.py @@ -88,10 +88,10 @@ class SlackRequest(object): if isinstance(post_data[field], list): post_data[field] = ",".join(post_dat...
Fixed JSON encoding for Web API request params (#<I>) * Fixed JSON encoding * Updated comments for clarity
slackapi_python-slackclient
train
7522645c6fbd94fead9f9198f8c608db1c2b2d72
diff --git a/src/main/java/org/primefaces/extensions/component/ckeditor/CKEditorRenderer.java b/src/main/java/org/primefaces/extensions/component/ckeditor/CKEditorRenderer.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/primefaces/extensions/component/ckeditor/CKEditorRenderer.java +++ b/src/main/java/org/prim...
pass through widgetVar instead of complete widget
primefaces-extensions_core
train
dc8920c7688555092d67bdfc65f911e476618a5c
diff --git a/src/jobTree/stack.py b/src/jobTree/stack.py index <HASH>..<HASH> 100644 --- a/src/jobTree/stack.py +++ b/src/jobTree/stack.py @@ -73,7 +73,8 @@ class Stack(object): addOptions(parser) def startJobTree(self, options): - """Runs jobtree using the given options (see Stack.getDefaultOpti...
Eliminated unnecessary multiplicity of target class names on scriptTree command line
DataBiosphere_toil
train
1ad473ba493be8c107955e07d45deef319ab15f1
diff --git a/core/src/test/java/org/bitcoinj/core/LegacyAddressTest.java b/core/src/test/java/org/bitcoinj/core/LegacyAddressTest.java index <HASH>..<HASH> 100644 --- a/core/src/test/java/org/bitcoinj/core/LegacyAddressTest.java +++ b/core/src/test/java/org/bitcoinj/core/LegacyAddressTest.java @@ -60,7 +60,7 @@ public ...
LegacyAddressTest: Eliminate redundant 'throws'.
bitcoinj_bitcoinj
train
5f639911436ab7f622bf8c4971b9d97c1fca4dee
diff --git a/lib/combinator/limit.js b/lib/combinator/limit.js index <HASH>..<HASH> 100644 --- a/lib/combinator/limit.js +++ b/lib/combinator/limit.js @@ -6,6 +6,7 @@ var Stream = require('../Stream'); var Sink = require('../sink/Pipe'); var dispose = require('../disposable/dispose'); var PropagateTask = require('.....
Add throttle fusion and map-throttle commutation (#<I>) * Add throttle fusion and map-throttle commutation * Add fusion test * Add map commutation test
mostjs_core
train
f00ccf2298fa2c17db316e3d52ba56e90cdd47f4
diff --git a/src/Drupal/DrupalExtension/Context/DrupalContext.php b/src/Drupal/DrupalExtension/Context/DrupalContext.php index <HASH>..<HASH> 100644 --- a/src/Drupal/DrupalExtension/Context/DrupalContext.php +++ b/src/Drupal/DrupalExtension/Context/DrupalContext.php @@ -61,7 +61,7 @@ class DrupalContext extends RawDrup...
Pass the user object when logging in a user. We used to set the current user on the context object before logging in the user. This caused the state of the user to be inconsistent. Now we pass in the user object to the methods responsible for logging in, and the state is only updated when the user is successfully logg...
jhedstrom_drupalextension
train
09c34cf2807258c9114ddf815215db79aff72aa7
diff --git a/lib/Compilation.js b/lib/Compilation.js index <HASH>..<HASH> 100644 --- a/lib/Compilation.js +++ b/lib/Compilation.js @@ -1185,8 +1185,8 @@ class Compilation extends Tapable { this.warnings.forEach(function(warning) { hash.update(`${warning.message}`); }); - this.errors.forEach(function(warning)...
remove hash from stats test with error because error contains an absolute path
webpack_webpack
train
b77aa92744d2156dda84715a93bcd78008b10f3e
diff --git a/zones/requests/xhr-cookies.js b/zones/requests/xhr-cookies.js index <HASH>..<HASH> 100644 --- a/zones/requests/xhr-cookies.js +++ b/zones/requests/xhr-cookies.js @@ -1,5 +1,6 @@ var makeHeaders = require("../../lib/util/make_headers"); var url = require("url"); +var Zone = require("can-zone"); module....
Ensure cookie setting from XHR requests occurs within the zone
donejs_done-ssr
train
4f25c981246f4759c3ac9aa35257cd0a1d4c56d8
diff --git a/synchro/synchrotest.py b/synchro/synchrotest.py index <HASH>..<HASH> 100644 --- a/synchro/synchrotest.py +++ b/synchro/synchrotest.py @@ -150,6 +150,9 @@ excluded_tests = [ 'TestReplicaSetClient.test_kill_cursor_explicit_secondary', 'TestSelections.test_bool', 'TestTransactions.transaction_t...
MOTOR-<I> Skip failing synchro test for now
mongodb_motor
train
efe89e03686289dd375ea6092fa252878f01e937
diff --git a/ish_parser/Components/PresentWeatherComponent.py b/ish_parser/Components/PresentWeatherComponent.py index <HASH>..<HASH> 100644 --- a/ish_parser/Components/PresentWeatherComponent.py +++ b/ish_parser/Components/PresentWeatherComponent.py @@ -2,26 +2,57 @@ from .BaseComponent import BaseComponent class P...
Add obscuration to PresentWeatherComponent, and simplify concatenating for present_weather Add obscuration to PresentWeatherComponent, and simplify concatenating for present_weather Without Obscuration you don't get Fog
haydenth_ish_parser
train
90117f01359b32affbddd5bb649ca468ea2af30c
diff --git a/lib/endpoints/class-wp-rest-comments-controller.php b/lib/endpoints/class-wp-rest-comments-controller.php index <HASH>..<HASH> 100755 --- a/lib/endpoints/class-wp-rest-comments-controller.php +++ b/lib/endpoints/class-wp-rest-comments-controller.php @@ -360,11 +360,11 @@ class WP_REST_Comments_Controller e...
Use Yoda Condition checks, you must
WP-API_WP-API
train
f71b8f70dc2c7c0ef5dbc5a828a73fac296ae26e
diff --git a/src/Dsn.php b/src/Dsn.php index <HASH>..<HASH> 100644 --- a/src/Dsn.php +++ b/src/Dsn.php @@ -339,7 +339,6 @@ class Dsn if ($query) { foreach ($query as $key => &$value) { if (is_array($value)) { - $intermediate = []; foreach ...
Fix formatting issue which caused CodeSniffer errors.
AD7six_php-dsn
train
3b5dcdc8f58123684d7e4b6cc6b5f23cec8c6e6f
diff --git a/lib/hurley/client.rb b/lib/hurley/client.rb index <HASH>..<HASH> 100644 --- a/lib/hurley/client.rb +++ b/lib/hurley/client.rb @@ -110,7 +110,7 @@ module Hurley def request(method, path) req = Request.new(method, Url.join(@url, path), @header.dup) - req.ssl_options = @ssl_options + r...
give requests copies of SslOptions
lostisland_hurley
train
2687502ba4e3d3eb41b6da6b52de151ef5dca9a2
diff --git a/api/client/commands.go b/api/client/commands.go index <HASH>..<HASH> 100644 --- a/api/client/commands.go +++ b/api/client/commands.go @@ -344,6 +344,7 @@ func (cli *DockerCli) CmdLogin(args ...string) error { if username == "" { promptDefault("Username", authconfig.Username) username = readInput(cl...
Remove leading spaces of username when login When we run `docker login` we will be asked to input our username. Prior to this PR, "userA" and " userA" will be considered as two diferrent user, which is not right.
containers_storage
train
7ccb23ed3f4861d9f710fdf83423a9f00c4b86ac
diff --git a/src/video.js b/src/video.js index <HASH>..<HASH> 100644 --- a/src/video.js +++ b/src/video.js @@ -92,52 +92,6 @@ Video.prototype._applySizeToCanvas = function() { }; /** - * Draws image sprite into x a y position - * @param {object} sprite - sprite data - * @param {number} x - x position - * @param {nu...
remove sprites and animations helper methods
jansedivy_potion
train
074fb6216adbd2b850fb2947dd2a8b2af5d3fc14
diff --git a/lib/rake/builder.rb b/lib/rake/builder.rb index <HASH>..<HASH> 100644 --- a/lib/rake/builder.rb +++ b/lib/rake/builder.rb @@ -292,6 +292,7 @@ module Rake directory @objects_path file local_config => scoped_task( :missing_headers ) do + @logger.add( Logger::DEBUG, "Creating file '#{ l...
Create Makefiles for executables and shared libs too
joeyates_rake-builder
train
eac5ac8cd85607041fdd4d913776c8d0e6e2da48
diff --git a/govaluate.go b/govaluate.go index <HASH>..<HASH> 100644 --- a/govaluate.go +++ b/govaluate.go @@ -1,6 +1,7 @@ package govaluation import ( + "fmt" "errors" "bytes" "strconv" @@ -28,9 +29,7 @@ type ExpressionToken struct { Represents all valid types of tokens that a token can be. */ type Token...
Added symbol parsing. The TODO's need to be done, as this is getting progressively uglier.
Knetic_govaluate
train
c5b32c22d583e344f672e51d729c5e1aa8ab4546
diff --git a/spyderlib/utils/icon_manager.py b/spyderlib/utils/icon_manager.py index <HASH>..<HASH> 100644 --- a/spyderlib/utils/icon_manager.py +++ b/spyderlib/utils/icon_manager.py @@ -47,10 +47,10 @@ _qtaargs = { 'run_settings': [('fa.wrench', 'fa.play'), {'options': [{'offset':(0.0, -0.1)}, {'offset...
Change order in icon stack to solve anti-aliasing issue
spyder-ide_spyder
train
5e4aa23c3aaf7d6ff6d48130de20e7cfc244e339
diff --git a/src/runtime.js b/src/runtime.js index <HASH>..<HASH> 100644 --- a/src/runtime.js +++ b/src/runtime.js @@ -7,8 +7,8 @@ import stdlib from "./stdlib/index"; import Variable, {TYPE_IMPLICIT} from "./variable"; class ResolutionError extends Error { - constructor(error, input) { - super(`Error in defini...
Make more ES3-ish to align with style.
observablehq_runtime
train
da964f82594b4581f931ffae272f2d3e2d3a627d
diff --git a/src/FluentDOM/DOM/Node/ChildNode/Implementation.php b/src/FluentDOM/DOM/Node/ChildNode/Implementation.php index <HASH>..<HASH> 100644 --- a/src/FluentDOM/DOM/Node/ChildNode/Implementation.php +++ b/src/FluentDOM/DOM/Node/ChildNode/Implementation.php @@ -91,7 +91,7 @@ namespace FluentDOM\DOM\Node\ChildNode ...
Add missing test for FluentDOM\DOM\ChildNode::replace() - method is deprecated but still exists
ThomasWeinert_FluentDOM
train
ce1cff2cc01e8914af1085c0c41ccc4352f22555
diff --git a/guava-tests/test/com/google/common/collect/RangesTest.java b/guava-tests/test/com/google/common/collect/RangesTest.java index <HASH>..<HASH> 100644 --- a/guava-tests/test/com/google/common/collect/RangesTest.java +++ b/guava-tests/test/com/google/common/collect/RangesTest.java @@ -32,6 +32,7 @@ import java...
Deprecate Ranges now that the majority of callers have been migrated. ------------- Created by MOE: <URL>
google_guava
train
c430a66310500788c4d57bf2743d972b10ad988a
diff --git a/grammpy/IsMethodsRuleExtension.py b/grammpy/IsMethodsRuleExtension.py index <HASH>..<HASH> 100644 --- a/grammpy/IsMethodsRuleExtension.py +++ b/grammpy/IsMethodsRuleExtension.py @@ -8,7 +8,8 @@ Part of grammpy """ from .Rule import Rule -from .exceptions.RuleException import RuleException +from .except...
Implement validation of array and tuples
PatrikValkovic_grammpy
train
56f7ce619aa2c855807e37cd6ea43c050f77b609
diff --git a/lib/genconfig/data.rb b/lib/genconfig/data.rb index <HASH>..<HASH> 100644 --- a/lib/genconfig/data.rb +++ b/lib/genconfig/data.rb @@ -19,10 +19,30 @@ module GenConfig 'm' => 'master', } - # This regex determines if we're looking at a OS token or a node - # token. If a node token, it cap...
(QENG-<I>) Implement arbitrary role support in genconfig2.
puppetlabs_beaker-hostgenerator
train
0ce0972fa048492bce09a507ddc14500fff5083b
diff --git a/lib/best_companies/state.rb b/lib/best_companies/state.rb index <HASH>..<HASH> 100644 --- a/lib/best_companies/state.rb +++ b/lib/best_companies/state.rb @@ -12,23 +12,6 @@ class BestCompanies::State @company << company.name unless @company.include?(company.name) end - def self.create(name) - self...
removed all findable, persistable, and nameable methods
yosayon_Best_Companies
train
8ee51b0f10288dd2a24d8b7ec34d57760ff26874
diff --git a/spec/operators/distinct-spec.js b/spec/operators/distinct-spec.js index <HASH>..<HASH> 100644 --- a/spec/operators/distinct-spec.js +++ b/spec/operators/distinct-spec.js @@ -196,6 +196,21 @@ describe('Observable.prototype.distinct()', function () { expectSubscriptions(e2.subscriptions).toBe(e2subs); ...
test(distinct): add additional test coverage
ReactiveX_rxjs
train
ca4a61b3b29c56b85959d4474676a913960fd113
diff --git a/src/Moxl/Stanza/PubsubAtom.php b/src/Moxl/Stanza/PubsubAtom.php index <HASH>..<HASH> 100755 --- a/src/Moxl/Stanza/PubsubAtom.php +++ b/src/Moxl/Stanza/PubsubAtom.php @@ -42,6 +42,12 @@ class PubsubAtom { rel="replies" title="comments" ...
- Add setLink to an Atom post
movim_moxl
train
4102cc64a07992639ea8e9fa91ad55f3c771e430
diff --git a/admin/code/CMSForm.php b/admin/code/CMSForm.php index <HASH>..<HASH> 100644 --- a/admin/code/CMSForm.php +++ b/admin/code/CMSForm.php @@ -86,9 +86,4 @@ class CMSForm extends Form { return $this->responseNegotiator; } - public function FormName() { - if($this->htmlID) return $this->htmlID; - else r...
BUG Issues with CMSForm not consistently respecting new form naming scheme. Fixes for failing CMSFormTest cases
silverstripe_silverstripe-framework
train
cec6e7cd64588cb4701dd9897c81b517f0e5e6d3
diff --git a/src/TestSuite/Schema/SchemaGenerator.php b/src/TestSuite/Schema/SchemaGenerator.php index <HASH>..<HASH> 100644 --- a/src/TestSuite/Schema/SchemaGenerator.php +++ b/src/TestSuite/Schema/SchemaGenerator.php @@ -50,6 +50,10 @@ class SchemaGenerator { $this->file = $file; $this->connect...
Move file validation into the constructor.
cakephp_cakephp
train
6e11294fe0b5c7d32662b2e52634fa0bf7670eee
diff --git a/lib/run.js b/lib/run.js index <HASH>..<HASH> 100644 --- a/lib/run.js +++ b/lib/run.js @@ -354,8 +354,9 @@ TestRunner.prototype.forceStop = function() { }; TestRunner.prototype._stopServer = function() { - if (this._server.fd) { + if (this._server) { this._server.close(); + this._server = null...
In <I> server doesn't have fd attribute anymore.
cloudkick_whiskey
train
32ac334b6c2003d2102879e3ff91f0da15c27c7b
diff --git a/LiSE/LiSE/engine.py b/LiSE/LiSE/engine.py index <HASH>..<HASH> 100644 --- a/LiSE/LiSE/engine.py +++ b/LiSE/LiSE/engine.py @@ -290,10 +290,19 @@ class AbstractEngine(ABC): return handlers[code](data) return msgpack.ExtType(code, data) - unpacker = partial(msgpack.unpac...
Handle packed data that's been padded with null bytes
LogicalDash_LiSE
train
082a19983ecf7656be3dcc0e2460bd49b81d86aa
diff --git a/pysat/utils/io.py b/pysat/utils/io.py index <HASH>..<HASH> 100644 --- a/pysat/utils/io.py +++ b/pysat/utils/io.py @@ -901,8 +901,7 @@ def inst_to_netcdf(inst, fname, base_instrument=None, epoch_name='Epoch', key].iloc[i][col].values ...
STY: removed unnecessary casting Removed unnecessary casting calls.
rstoneback_pysat
train
ee52d5dadf0d65a1facad8220e5fe83cd89c2945
diff --git a/plugins/CoreConsole/Commands/GenerateReport.php b/plugins/CoreConsole/Commands/GenerateReport.php index <HASH>..<HASH> 100644 --- a/plugins/CoreConsole/Commands/GenerateReport.php +++ b/plugins/CoreConsole/Commands/GenerateReport.php @@ -42,8 +42,7 @@ class GenerateReport extends GeneratePluginBase ...
Fixed a bug in the GenerateReport command It would only generate a report with the same name of the plugin.
matomo-org_matomo
train
20cd1b56e0b4c2d0bd37c777af89062506fc7a5c
diff --git a/nodeconductor/structure/tests/test_stats.py b/nodeconductor/structure/tests/test_stats.py index <HASH>..<HASH> 100644 --- a/nodeconductor/structure/tests/test_stats.py +++ b/nodeconductor/structure/tests/test_stats.py @@ -146,6 +146,9 @@ class StatsQuotaTimelineTest(BaseQuotaAggregationTest): self...
Add docstring for tests (NC-<I>)
opennode_waldur-core
train
d8da3aae76f9c724d932de977e7b2936fe593cfd
diff --git a/apptentive/src/main/java/com/apptentive/android/sdk/module/engagement/interaction/fragment/MessageCenterFragment.java b/apptentive/src/main/java/com/apptentive/android/sdk/module/engagement/interaction/fragment/MessageCenterFragment.java index <HASH>..<HASH> 100644 --- a/apptentive/src/main/java/com/appten...
Use handler to add greeting. Fix Composer focusing issue.
apptentive_apptentive-android
train
21faccbf5aa2aa456d521e2fcdc4fc37413e7b4d
diff --git a/spec/unit/provider/package/gem_spec.rb b/spec/unit/provider/package/gem_spec.rb index <HASH>..<HASH> 100755 --- a/spec/unit/provider/package/gem_spec.rb +++ b/spec/unit/provider/package/gem_spec.rb @@ -187,3 +187,52 @@ context 'installing myresource' do end end end + +context 'uninstalling myresou...
(PUP-<I>) Add unit tests for the uninstall method in gem.rb No unit tests are in place to check the uninstall behaviour of the gem provider. This commit adds unit tests to verify the gem.rb uninstall method functionality.
puppetlabs_puppet
train