hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
dd20c050fa769a88489e8a6fc2d70312c38017fe
diff --git a/spec/support/planets_context.rb b/spec/support/planets_context.rb index <HASH>..<HASH> 100644 --- a/spec/support/planets_context.rb +++ b/spec/support/planets_context.rb @@ -1,42 +1,36 @@ shared_context 'solar system', :files => :planets do + def file( filename, contents ) + IO.stub( :readlines ).with...
Refactor file mocking into helper method
jeremyruppel_codependency
train
9b66178dc1ac1691ed109c793c7b5f55d3202d51
diff --git a/spec/tty/plugins/find_spec.rb b/spec/tty/plugins/find_spec.rb index <HASH>..<HASH> 100644 --- a/spec/tty/plugins/find_spec.rb +++ b/spec/tty/plugins/find_spec.rb @@ -2,7 +2,7 @@ require 'spec_helper' -describe TTY::Plugins, '#find' do +RSpec.describe TTY::Plugins, '#find' do it "finds gems with a s...
Change to stop monkey patching specs.
piotrmurach_tty
train
845327af3885a504e27ec41a38336a7e916db2ec
diff --git a/client/cli/ok.py b/client/cli/ok.py index <HASH>..<HASH> 100644 --- a/client/cli/ok.py +++ b/client/cli/ok.py @@ -141,11 +141,11 @@ def main(): try: # Run protocol.on_start - messages = dict() + start_messages = dict() for name, proto in assign.protocol_map.items(): ...
Hardcode courseID to submission URL. Remove ok_messages data from network
okpy_ok-client
train
8d3f851355f2da8989bbc832eaf717c8c245fce7
diff --git a/src/bootlint.js b/src/bootlint.js index <HASH>..<HASH> 100644 --- a/src/bootlint.js +++ b/src/bootlint.js @@ -13,8 +13,8 @@ var semver = require('semver'); (function (exports) { 'use strict'; var NUM_COLS = 12; - var COL_REGEX = /\bcol-(xs|sm|md|lg)-(\d{0,2})\b/; - var COL_REGEX_G = /\bcol...
col classes have 1 or 2 digits, never 0 digits
twbs_bootlint
train
4b1fb409698b12609d800e3456fd53ad924ee6c4
diff --git a/src/Csv.php b/src/Csv.php index <HASH>..<HASH> 100644 --- a/src/Csv.php +++ b/src/Csv.php @@ -23,7 +23,7 @@ class Csv public function appendRow($row) { - $this->data = [$row] + $this->data; + array_unshift($this->data, $row); } public function prependRow($row)
Fixed appendRow, nolonger overrites keys
stilliard_CsvParser
train
a8cd4a94135b06d207284f555eedb4eadddd66e7
diff --git a/katcp/test/test_client.py b/katcp/test/test_client.py index <HASH>..<HASH> 100644 --- a/katcp/test/test_client.py +++ b/katcp/test/test_client.py @@ -277,16 +277,6 @@ class TestDeviceClientIntegrated(unittest.TestCase, TestUtilMixin): "Expected %r to not be %r" % (sock, self.client...
Fix client test post removal of except_hook and daemon options
ska-sa_katcp-python
train
91ea7f879d49614e0654409349dd25f436ca6199
diff --git a/src/tree/assess/scoreAggregators/ReadabilityScoreAggregator.js b/src/tree/assess/scoreAggregators/ReadabilityScoreAggregator.js index <HASH>..<HASH> 100644 --- a/src/tree/assess/scoreAggregators/ReadabilityScoreAggregator.js +++ b/src/tree/assess/scoreAggregators/ReadabilityScoreAggregator.js @@ -6,6 +6,8 ...
Added todo comment to make sure we compute the total number of readability assessments, instead of setting it as a constant.
Yoast_YoastSEO.js
train
b3fa50b4cf2d6b59a523f64c3d36921e0a510ce3
diff --git a/app/middleware/api_v1_depedencies.rb b/app/middleware/api_v1_depedencies.rb index <HASH>..<HASH> 100644 --- a/app/middleware/api_v1_depedencies.rb +++ b/app/middleware/api_v1_depedencies.rb @@ -28,7 +28,7 @@ class V1MarshaledDepedencies end if cache - cache.set "gem.#{name}", [Marshal.dump...
We don't need to base<I> armor the data
rubygems_rubygems.org
train
2b8d85f18107fd89a96d0ad3aedf54677d92e4db
diff --git a/src/main/java/io/github/bonigarcia/seljup/handler/DockerDriverHandler.java b/src/main/java/io/github/bonigarcia/seljup/handler/DockerDriverHandler.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/github/bonigarcia/seljup/handler/DockerDriverHandler.java +++ b/src/main/java/io/github/bonigarcia/selju...
Support for Edge (for Linux) in Docker containers (pulled from Docker Hub)
bonigarcia_selenium-jupiter
train
42a263b29facc879cac31cb85ed11415b197cc84
diff --git a/lnwire/lnwire_test.go b/lnwire/lnwire_test.go index <HASH>..<HASH> 100644 --- a/lnwire/lnwire_test.go +++ b/lnwire/lnwire_test.go @@ -316,8 +316,13 @@ func TestLightningWireProtocol(t *testing.T) { } req.CommitSig = testSig + // Only create the slice if there will be any signatures + // in it...
wire: Correct fuzz test for MsgCommitSig. This corrects the fuzz test in TestLightningWireProtocol for MsgCommitSig to avoid creating an empty slice since the decoded message only creates a slice when there are greater than zero signatures and an empty slice is not considered equal to a nil slice under reflection. Th...
lightningnetwork_lnd
train
260b775b0cbf8f90931bdaf0fdb5968b557c2867
diff --git a/src/Interface.py b/src/Interface.py index <HASH>..<HASH> 100755 --- a/src/Interface.py +++ b/src/Interface.py @@ -1,4 +1,5 @@ import os +import subprocess class Interface: def __init__(self): @@ -14,8 +15,8 @@ class Interface: virtual_if_name = ifname + ":" + str(i) if_ip...
used subprocess.Popen insted of os.popen in one place.
robotframework_Rammbock
train
61bf6c6123fc2e05d8d63752a22a1210b3eef707
diff --git a/python/ray/services.py b/python/ray/services.py index <HASH>..<HASH> 100644 --- a/python/ray/services.py +++ b/python/ray/services.py @@ -1546,7 +1546,7 @@ def start_ray_processes(address_info=None, local_scheduler_stdout_file, local_scheduler_stderr_file = ( new_log_files( ...
Fix regression in directing worker output to stdout/stderr. (#<I>)
ray-project_ray
train
8acd93358ffea822d27983a41b1bc662ddd8ba88
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -58,9 +58,9 @@ class Form end form = Form.new(name: 'John') -form.name # John -form.title # nil -form.valid? # false +form.name # return John +form.title # return nil +form.valid? # return false ``` ## Use validati...
Support alias_property class method
GCorbel_activeform-rails
train
3e779d3208b1aee28619a6524c11e2a3d6d19f49
diff --git a/tests/Phing/Support/BuildFileTest.php b/tests/Phing/Support/BuildFileTest.php index <HASH>..<HASH> 100644 --- a/tests/Phing/Support/BuildFileTest.php +++ b/tests/Phing/Support/BuildFileTest.php @@ -118,7 +118,7 @@ abstract class BuildFileTest extends TestCase ): void { $found = false; ...
Make all log-contains helper functions case insensitive
phingofficial_phing
train
220a6f6361cabb0cc41b32c1bde6fbac6d66b892
diff --git a/bindings/python/pydeck/docs/view_state.md b/bindings/python/pydeck/docs/view_state.md index <HASH>..<HASH> 100644 --- a/bindings/python/pydeck/docs/view_state.md +++ b/bindings/python/pydeck/docs/view_state.md @@ -8,9 +8,9 @@ class ViewState( self, longitude=0.0, latitude=0.0, - zoom=10, ...
Update pydeck docs: view_state.md (#<I>)
uber_deck.gl
train
e444e0b9c5dae0790b08ab2ac2917febcb3013c9
diff --git a/src/oAuth2.js b/src/oAuth2.js index <HASH>..<HASH> 100644 --- a/src/oAuth2.js +++ b/src/oAuth2.js @@ -48,8 +48,8 @@ export class OAuth2 { return openPopup .then(oauthData => { if (provider.responseType === 'token' || - provider.responseType === 'id_token%20token' || - ...
fix(oauth implicit): removed encoding of space character between response types when returning token from popup.
SpoonX_aurelia-authentication
train
e9fc775f956fc469f2a8ef7decaf5b3bf81451d2
diff --git a/src/metpy/calc/basic.py b/src/metpy/calc/basic.py index <HASH>..<HASH> 100644 --- a/src/metpy/calc/basic.py +++ b/src/metpy/calc/basic.py @@ -293,17 +293,18 @@ def heat_index(temperature, relative_humidity, mask_undefined=True): sel = ((relative_humidity <= 13. * units.percent) & (temperature >= 80. *...
MNT: Avoid warnings in heat_index calculation Only perform adjustments where we've identified values that need it and avoid calculating invalid values (like sqrt(<0)), not to mention doing extra work on values we won't use.
Unidata_MetPy
train
370fcab7a9bbd5b3bee5e29815da7a95e880fa14
diff --git a/src/main/python/rlbot/setup_manager.py b/src/main/python/rlbot/setup_manager.py index <HASH>..<HASH> 100644 --- a/src/main/python/rlbot/setup_manager.py +++ b/src/main/python/rlbot/setup_manager.py @@ -1,6 +1,7 @@ import multiprocessing as mp import os import sys +import json import psutil import pl...
Add support for the Epic Games Launcher (#<I>) * Add support for the Epic Games Launcher * Launch exe * Verify Steam & Epic game launches
RLBot_RLBot
train
ac8107c84f6b48ea1054c9e3c468a6a9d9437d75
diff --git a/lib/add.js b/lib/add.js index <HASH>..<HASH> 100644 --- a/lib/add.js +++ b/lib/add.js @@ -24,7 +24,8 @@ module.exports = function (archive, files, options) { files = u.files(files); // Create a string that can be parsed by `run`. - var command = '7za a "' + archive + '" ' + files; + var c...
Added support to RAR using 7zip-rar plugin
quentinrossetti_node-7z
train
010e60309cad6ee867b09018b689326c10bcdc69
diff --git a/src/main/java/net/bootsfaces/component/radiobutton/RadiobuttonRenderer.java b/src/main/java/net/bootsfaces/component/radiobutton/RadiobuttonRenderer.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/bootsfaces/component/radiobutton/RadiobuttonRenderer.java +++ b/src/main/java/net/bootsfaces/componen...
#<I> individual radiobuttons can now be disabled
TheCoder4eu_BootsFaces-OSP
train
b4c44c492bb99c2cbf1223d407a24cf9c452fa93
diff --git a/src/edu/jhu/hltcoe/train/TrainerFactory.java b/src/edu/jhu/hltcoe/train/TrainerFactory.java index <HASH>..<HASH> 100644 --- a/src/edu/jhu/hltcoe/train/TrainerFactory.java +++ b/src/edu/jhu/hltcoe/train/TrainerFactory.java @@ -9,15 +9,11 @@ import org.apache.commons.cli.ParseException; import edu.jhu.hltco...
Switched back to rand-walk stratified sampling. git-svn-id: svn+ssh://external.hltcoe.jhu.edu/home/hltcoe/mgormley/public/repos/dep_parse_filtered/trunk@<I> <I>f-cb4b-<I>-8b<I>-c<I>bcb<I>
mgormley_pacaya
train
398c9e79d686da269de01fa9a2e21e678668b250
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -27,4 +27,5 @@ setup( keywords=['cache', 'file', 'serialize'], packages=['fcache'], test_suite='fcache.tests', + install_requires=['appdirs'], )
Makes appdirs required for installation.
tsroten_fcache
train
01467f26a0bc348c0e2fa3647ca10cb5bf6e9f14
diff --git a/hawkular-wildfly-monitor/src/main/java/org/hawkular/agent/monitor/feedcomm/ExecuteOperationCommand.java b/hawkular-wildfly-monitor/src/main/java/org/hawkular/agent/monitor/feedcomm/ExecuteOperationCommand.java index <HASH>..<HASH> 100644 --- a/hawkular-wildfly-monitor/src/main/java/org/hawkular/agent/monit...
Debug output when searching for operations to perform
hawkular_hawkular-agent
train
f094886adf369d407e7ef42dded9138dcfc830e3
diff --git a/message.py b/message.py index <HASH>..<HASH> 100644 --- a/message.py +++ b/message.py @@ -22,12 +22,12 @@ class Message(object): class TextMessage(Message): def __init__(self, payload): - super(TextMessage, self).__init__(OPCODE_TEXT, payload) + super(TextMessage, self).__init__(OPCOD...
Text messages payloads are not UTF-8 encoded automatically
taddeus_wspy
train
2dea8bb2135071675f044a5f973ff2ebef1beb87
diff --git a/ciscosparkapi/restsession.py b/ciscosparkapi/restsession.py index <HASH>..<HASH> 100644 --- a/ciscosparkapi/restsession.py +++ b/ciscosparkapi/restsession.py @@ -144,13 +144,13 @@ class RestSession(object): # objects contained within the top level 'items' array assert isinstance(j...
Fix bug #<I> Correct RestSession.get_items() to check for the existence of a JSON ‘items’ attribute by checking to see ‘if items is None’ instead of just checking for ‘if items’, which incorrectly raises the error when ‘items’ is present but is an empty array.
CiscoDevNet_webexteamssdk
train
79910072e95d98c9dbdd35294d8d749581bbb18f
diff --git a/core/src/main/java/org/infinispan/notifications/cachelistener/filter/EventType.java b/core/src/main/java/org/infinispan/notifications/cachelistener/filter/EventType.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/infinispan/notifications/cachelistener/filter/EventType.java +++ b/core/src/main...
ISPN-<I> EventType methods are not public
infinispan_infinispan
train
34014d6d6b2b93ac25684eb0a88737db3f6b2714
diff --git a/ronkyuu/tools.py b/ronkyuu/tools.py index <HASH>..<HASH> 100644 --- a/ronkyuu/tools.py +++ b/ronkyuu/tools.py @@ -88,9 +88,9 @@ def parse_link_header(link): try: rel_url = re.search('<(.+?)>', rel_break[0]).group(1) rel_names = quoted_split(rel_break[1], '=')[-1] + ...
silly mistake, remove quotes outside of the loop
bear_ronkyuu
train
c7dddfaf8cbc87abe9b02a84ca7205e42572a5a6
diff --git a/crochet/_eventloop.py b/crochet/_eventloop.py index <HASH>..<HASH> 100644 --- a/crochet/_eventloop.py +++ b/crochet/_eventloop.py @@ -261,7 +261,8 @@ class ThreadLogObserver(object): def __init__(self, observer): self._observer = observer self._queue = Queue() - self._thread =...
Give names to all threads. Fixes #9
itamarst_crochet
train
d644b3dd0ac19d43c8d2c97b8aef57d7b82a60ea
diff --git a/lib/delayed/job.rb b/lib/delayed/job.rb index <HASH>..<HASH> 100644 --- a/lib/delayed/job.rb +++ b/lib/delayed/job.rb @@ -77,22 +77,16 @@ module Delayed end def self.enqueue(*args, &block) - if block_given? - priority = args.first || 0 - run_at = args.second - - ...
Minor refactoring of Delayed::Job.enqueue to DRY up handling of EvaledJobs
tobi_delayed_job
train
349d06d6c67a4b48e8ec3b507a98616580a8d863
diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamExecutionEnvironment.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamExecutionEnvironment.java index <HASH>..<HASH> 100644 --- a/flink-streaming-java/src/main/java/org/apache/flink...
[hotfix] [streaming api] Add proper deprecation JavaDocs Also includes minor style cleanup of a test.
apache_flink
train
0bf7bac57b40ddbb4158dfce06660db8943414c4
diff --git a/amadeus/travel/analytics/air_traffic/_busiest_period.py b/amadeus/travel/analytics/air_traffic/_busiest_period.py index <HASH>..<HASH> 100644 --- a/amadeus/travel/analytics/air_traffic/_busiest_period.py +++ b/amadeus/travel/analytics/air_traffic/_busiest_period.py @@ -16,9 +16,11 @@ class BusiestPeriod(De...
Update the doc for Flight Busiest Traveling Period
amadeus4dev_amadeus-python
train
4773ed7acdf22c27208947f3b4cade2c5f7e97c2
diff --git a/parse_rest/datatypes.py b/parse_rest/datatypes.py index <HASH>..<HASH> 100644 --- a/parse_rest/datatypes.py +++ b/parse_rest/datatypes.py @@ -253,8 +253,8 @@ class ACL(ParseType): def from_native(cls, **kw): return cls(kw) - def __init__(self, acl): - self._acl = acl + def __in...
Make ACL default to master key only
milesrichardson_ParsePy
train
7b4305bde2abf4df4ad7f97f913bfc2a22cef08a
diff --git a/cookbook/test/integration/localzk/serverspec/agent_spec.rb b/cookbook/test/integration/localzk/serverspec/agent_spec.rb index <HASH>..<HASH> 100644 --- a/cookbook/test/integration/localzk/serverspec/agent_spec.rb +++ b/cookbook/test/integration/localzk/serverspec/agent_spec.rb @@ -11,11 +11,11 @@ describe ...
Update tests to look for the namespaced agent files/services
HubSpot_Baragon
train
cc5187e63e5c4a1d8355fb8d404d6ae648450fb3
diff --git a/examples/python/master.go b/examples/python/master.go index <HASH>..<HASH> 100644 --- a/examples/python/master.go +++ b/examples/python/master.go @@ -12,7 +12,7 @@ import ( ) var max int = 2000 -var path string = "./pie_python_plugin.py" +var path string = "./plugin.py" type plug struct { Client *...
Made examples runnable and added usage
natefinch_pie
train
4bceafb16d48809fade4624e098eeae87e1e27fe
diff --git a/src/Fixer/Import/GroupImportFixer.php b/src/Fixer/Import/GroupImportFixer.php index <HASH>..<HASH> 100644 --- a/src/Fixer/Import/GroupImportFixer.php +++ b/src/Fixer/Import/GroupImportFixer.php @@ -97,7 +97,12 @@ final class GroupImportFixer extends AbstractFixer return \in_array($namespaceNam...
GroupImportFixer severely broken
FriendsOfPHP_PHP-CS-Fixer
train
b89f7dc62d98d230d0fff28d7e149127b44a935f
diff --git a/spec/Extension/PhpMockExtensionSpec.php b/spec/Extension/PhpMockExtensionSpec.php index <HASH>..<HASH> 100644 --- a/spec/Extension/PhpMockExtensionSpec.php +++ b/spec/Extension/PhpMockExtensionSpec.php @@ -19,7 +19,9 @@ class PhpMockExtensionSpec extends ObjectBehavior function it_loads_the_coll...
fixed runner setup - missing new section tag
cyruscollier_phpspec-php-mock
train
22bcdb6223ab3dce5b414b122e4ff2785e6cf737
diff --git a/connector/src/main/java/org/jboss/as/connector/subsystems/datasources/DataSourceModelNodeUtil.java b/connector/src/main/java/org/jboss/as/connector/subsystems/datasources/DataSourceModelNodeUtil.java index <HASH>..<HASH> 100644 --- a/connector/src/main/java/org/jboss/as/connector/subsystems/datasources/Dat...
WFLY-<I> Expressions not working in XA DS attr share-prepared-statements
wildfly_wildfly
train
532dcbeee7e9c9df30b6ccf981be4cf5537e817c
diff --git a/src-modules/org/opencms/ade/sitemap/client/CmsSitemapHoverbar.java b/src-modules/org/opencms/ade/sitemap/client/CmsSitemapHoverbar.java index <HASH>..<HASH> 100644 --- a/src-modules/org/opencms/ade/sitemap/client/CmsSitemapHoverbar.java +++ b/src-modules/org/opencms/ade/sitemap/client/CmsSitemapHoverbar.ja...
disable edit button in root item of sub-sitemaps
alkacon_opencms-core
train
124a6dff88c62b46684f0eda7d1ee37d479b55cb
diff --git a/angr/simos/cgc.py b/angr/simos/cgc.py index <HASH>..<HASH> 100644 --- a/angr/simos/cgc.py +++ b/angr/simos/cgc.py @@ -63,7 +63,6 @@ class SimCGC(SimUserland): s.libc.max_str_len = 1000000 s.libc.max_strtol_len = 10 s.libc.max_memcpy_size = 0x100000 - s.libc.max_symbolic_by...
Remove store which technically did nothing because it's a typo
angr_angr
train
a7568488cc6c8de7c80a1e41d8417f65fb6e2807
diff --git a/wechatsogou/api.py b/wechatsogou/api.py index <HASH>..<HASH> 100644 --- a/wechatsogou/api.py +++ b/wechatsogou/api.py @@ -98,8 +98,7 @@ class WechatSogouAPI(object): '[WechatSogouAPI identify image] code: {ret}, msg: {errmsg}, cookie_count: {cookie_count}'.format( ret=...
fix: search_gzh (#<I>)
Chyroc_WechatSogou
train
2432be0f0a1588be5324026b00b3a2875668af4a
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index <HASH>..<HASH> 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -48,28 +48,3 @@ class TestCase extends \PHPUnit_Framework_TestCase } - -class VfsStreamFailFile extends \org\bovigo\vfs\vfsStreamFile -{ - public $fail = null; - - public fu...
removes unused class from test bootstrap
sndsgd_fs
train
00a81d41838f4a2c91c31b7d26f6383cd03d1cc6
diff --git a/symphony/content/content.blueprintsdatasources.php b/symphony/content/content.blueprintsdatasources.php index <HASH>..<HASH> 100644 --- a/symphony/content/content.blueprintsdatasources.php +++ b/symphony/content/content.blueprintsdatasources.php @@ -20,6 +20,8 @@ $this->setPageType('table'); $this-...
More changes to the datasource and page managers
symphonycms_symphony-2
train
cb7ca8abc1ce8dd7f264e29a3098505df0e5a03b
diff --git a/gossip/discovery/discovery_test.go b/gossip/discovery/discovery_test.go index <HASH>..<HASH> 100644 --- a/gossip/discovery/discovery_test.go +++ b/gossip/discovery/discovery_test.go @@ -815,7 +815,7 @@ func TestUpdate(t *testing.T) { checkMembership := func() bool { for _, member := range instances[no...
Fix staticcheck issues in gossip/discovery (#<I>) Resolves issues found after running staticcheck FAB-<I> #done
hyperledger_fabric
train
3381ea25b5a3baf81c4769134a36a62f22d4672f
diff --git a/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php b/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php index <HASH>..<HASH> 100644 --- a/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.php +++ b/src/Sylius/Bundle/ResourceBundle/Controller/ResourceController.p...
[resource] - persist and flush changes on resources calling move actions.
Sylius_Sylius
train
55b38abd87b436fa0ad1efe511031c076bb76eaa
diff --git a/examples/logic.py b/examples/logic.py index <HASH>..<HASH> 100644 --- a/examples/logic.py +++ b/examples/logic.py @@ -1,3 +1,10 @@ +""" +Convert languages and language codes into ISO names + +Copyright (c) 2014 Mikael Karlsson (CSC - IT Center for Science Ltd.). +Licensed under AGPLv3. +""" + import re ...
Add header to logic.py and tests.py
noumar_iso639
train
421ef8ea7beb680a614dfdb2e3a90889a4b534ef
diff --git a/response_test.go b/response_test.go index <HASH>..<HASH> 100644 --- a/response_test.go +++ b/response_test.go @@ -1,8 +1,8 @@ package xmlrpc import ( - "testing" - "time" + "testing" + "time" ) const RESPONSE_BODY = ` @@ -41,19 +41,51 @@ const FAULT_RESPONSE_BODY = ` </methodResponse>` fu...
Unit test for untyped responses are strings
kolo_xmlrpc
train
924196f0c9fa91c511cc4b1d6cbcece4791bf498
diff --git a/lib/cap-ec2/capistrano.rb b/lib/cap-ec2/capistrano.rb index <HASH>..<HASH> 100644 --- a/lib/cap-ec2/capistrano.rb +++ b/lib/cap-ec2/capistrano.rb @@ -21,7 +21,8 @@ module Capistrano def ec2_role(name, options={}) ec2_handler.get_servers_for_role(name).each do |server| - env.role(...
Merge the AWS Instance id into the Cap::Server So that I don't lose *all* the identifying information when I convert the AWS::Instance into a Capistrano::Configuration::Server Conflicts: lib/cap-ec2/capistrano.rb
forward3d_cap-ec2
train
330398ea1f31284682c3391cbf8aa07f95cd4475
diff --git a/output/html/http.php b/output/html/http.php index <HASH>..<HASH> 100644 --- a/output/html/http.php +++ b/output/html/http.php @@ -38,9 +38,6 @@ class QM_Output_Html_HTTP extends QM_Output_Html { echo '<thead>'; echo '<tr>'; - echo '<th scope="col" class="qm-sorted-asc qm-sortable-column">'; - ...
Remove the ability to sort the HTTP API Calls table. This removes a column, increasing the available horizontal space.
johnbillion_query-monitor
train
df989d63bad41eac9788563d5cfcf8d9b319ae02
diff --git a/js/wee.history.js b/js/wee.history.js index <HASH>..<HASH> 100644 --- a/js/wee.history.js +++ b/js/wee.history.js @@ -34,7 +34,7 @@ if (! el.href || el.target == '_blank' || - ! /https?:/.test(el.protocol) || + ! /https?:/.test(el.href) || el.hasAttribute('download') || el.hasAtt...
Use href for protocol check instead of protocol directly Tweak scrollTop JSDoc types
weepower_wee-core
train
386d09ac5b9839d97e661ee904e14d3e645ec8c2
diff --git a/api/app/app_test.go b/api/app/app_test.go index <HASH>..<HASH> 100644 --- a/api/app/app_test.go +++ b/api/app/app_test.go @@ -701,10 +701,9 @@ func (s *S) TestNewAppShouldNotCreateKeystoneEnvWhenMultiTenantConfIsFalse(c *C) } func (s *S) TestNewAppShouldCreateNewJujuEnvironment(c *C) { - // TODO(fsouza...
api/app: deleting app before finish the test
tsuru_tsuru
train
a12df4ad84086fafdd59428c92244134cf874f36
diff --git a/autofit/messages/transform_wrapper.py b/autofit/messages/transform_wrapper.py index <HASH>..<HASH> 100644 --- a/autofit/messages/transform_wrapper.py +++ b/autofit/messages/transform_wrapper.py @@ -2,7 +2,7 @@ from typing import Union, Type, Optional, Tuple import numpy as np -from autofit.messages.tr...
implemented methods such that transformed classes can now be pickled
rhayes777_PyAutoFit
train
ddb1bce59f0e8ebd991d6bf1619a28eccd02e0aa
diff --git a/mousedb/veterinary/__init__.py b/mousedb/veterinary/__init__.py index <HASH>..<HASH> 100644 --- a/mousedb/veterinary/__init__.py +++ b/mousedb/veterinary/__init__.py @@ -0,0 +1,14 @@ +'''The veterinary app is for medical issues associated with animals. + +The primary functions of this app are to: + +* Stor...
Wrote docstring for veterinary app. Part of issue #<I>.
davebridges_mousedb
train
24fd1b0ecaaa89d4667d70e70b034079c40b659b
diff --git a/hazelcast/src/main/java/com/hazelcast/spi/Operation.java b/hazelcast/src/main/java/com/hazelcast/spi/Operation.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/main/java/com/hazelcast/spi/Operation.java +++ b/hazelcast/src/main/java/com/hazelcast/spi/Operation.java @@ -27,7 +27,6 @@ import com.hazelcas...
Removed unused import from Operation
hazelcast_hazelcast
train
76ca182ac22b52e107571da0acdcea18a80e01a7
diff --git a/lib/winrm/winrm_service.rb b/lib/winrm/winrm_service.rb index <HASH>..<HASH> 100644 --- a/lib/winrm/winrm_service.rb +++ b/lib/winrm/winrm_service.rb @@ -312,7 +312,7 @@ module WinRM # @return [Hash] :stdout and :stderr def run_powershell_script(script_file, &block) # if an IO object is pa...
Use duck typing for run_powershell_script * Ruby has several file like types that do not inherit from IO, but act like a file such as `Tempfile` and `StringIO`, it might be beneficial for WinRM's `run_powershell_script` method to accept these kinds of objects and others.
WinRb_WinRM
train
d681ad65267e453364eb498f91cf5811e489c1ec
diff --git a/scout_apm/core_agent_manager.py b/scout_apm/core_agent_manager.py index <HASH>..<HASH> 100644 --- a/scout_apm/core_agent_manager.py +++ b/scout_apm/core_agent_manager.py @@ -91,9 +91,9 @@ class CoreAgentManager: subprocess.Popen( [ executable, 'daemon', - ...
Extract functions for args to CoreAgent
scoutapp_scout_apm_python
train
891918beedcc4a099ebf5ab94521ded2d87babf7
diff --git a/lib/punchblock/translator/asterisk.rb b/lib/punchblock/translator/asterisk.rb index <HASH>..<HASH> 100644 --- a/lib/punchblock/translator/asterisk.rb +++ b/lib/punchblock/translator/asterisk.rb @@ -30,7 +30,9 @@ module Punchblock end def call_for_channel(channel) - call_with_id @chan...
[FEATURE] Log call lookup by channel on the translator
adhearsion_punchblock
train
a939c53990c9f2be1696c3420cb81d9c540efbae
diff --git a/actionview/lib/action_view/helpers/asset_tag_helper.rb b/actionview/lib/action_view/helpers/asset_tag_helper.rb index <HASH>..<HASH> 100644 --- a/actionview/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionview/lib/action_view/helpers/asset_tag_helper.rb @@ -98,7 +98,7 @@ module ActionView ...
Avoid sending preload links for `data:` URLs
rails_rails
train
4734cd47d95cee00fc2ed270fb4a59adc3437220
diff --git a/plugins/kalabox-engine-docker/provider/docker/docker.js b/plugins/kalabox-engine-docker/provider/docker/docker.js index <HASH>..<HASH> 100644 --- a/plugins/kalabox-engine-docker/provider/docker/docker.js +++ b/plugins/kalabox-engine-docker/provider/docker/docker.js @@ -64,6 +64,12 @@ module.exports = funct...
#<I>: Need to build run containers as well
kalabox_kalabox
train
4f91221a23405ee4f422e40acd508c8b5a1ffaa2
diff --git a/app/models/cfp/proposal.rb b/app/models/cfp/proposal.rb index <HASH>..<HASH> 100644 --- a/app/models/cfp/proposal.rb +++ b/app/models/cfp/proposal.rb @@ -2,7 +2,7 @@ module Cfp class Proposal < ActiveRecord::Base - RANK_SCALE = (0..2).to_a + RANK_SCALE = (0..5).to_a TALK_LEVEL = %w(beginne...
Change evaluation range to <I>
crowdint_cfp
train
6b70be82bf540e16c4e63c1e90249a738bf59669
diff --git a/tests/Unit/Suites/Product/ProductSearchRequestHandlerTest.php b/tests/Unit/Suites/Product/ProductSearchRequestHandlerTest.php index <HASH>..<HASH> 100644 --- a/tests/Unit/Suites/Product/ProductSearchRequestHandlerTest.php +++ b/tests/Unit/Suites/Product/ProductSearchRequestHandlerTest.php @@ -174,7 +174,6 ...
Issue #<I>: Remove excessive newline
lizards-and-pumpkins_catalog
train
a57990ff51800bb05cebaf102e7d288487c98bd8
diff --git a/activerecord/lib/active_record/schema.rb b/activerecord/lib/active_record/schema.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/schema.rb +++ b/activerecord/lib/active_record/schema.rb @@ -34,6 +34,15 @@ module ActiveRecord ActiveRecord::Migrator.migrations_paths end + ...
Call methods on the correct instance in AR::Schema.define Now that migrations support instance methods, we should use the same instance rather than relying on delegation to a global instance. This allows subclassing AR::Schema.
rails_rails
train
7d9c92a846bd7ac9a3e147a239775787604ff90f
diff --git a/lib/ddl/oracle_sql_generator.php b/lib/ddl/oracle_sql_generator.php index <HASH>..<HASH> 100644 --- a/lib/ddl/oracle_sql_generator.php +++ b/lib/ddl/oracle_sql_generator.php @@ -253,8 +253,11 @@ class oracle_sql_generator extends sql_generator { $oldseqname = $this->getSequenceFromDB($xmldb_table)...
MDL-<I> oracle native driver: disable sequence cache before renaming, enable later
moodle_moodle
train
8d93d1ac21ae02018535b0efd91b98db1cb4ed74
diff --git a/allennlp/common/params.py b/allennlp/common/params.py index <HASH>..<HASH> 100644 --- a/allennlp/common/params.py +++ b/allennlp/common/params.py @@ -54,7 +54,7 @@ class Params(MutableMapping): DEFAULT = object() def __init__(self, params: Dict[str, Any], history: str = "") -> None: - se...
move replace_none into params (#<I>) * move replace_none into params * make replace_none private
allenai_allennlp
train
086cdd60de9ad3bd8ebd150cea2e071e4cf9a191
diff --git a/synapse/lib/ast.py b/synapse/lib/ast.py index <HASH>..<HASH> 100644 --- a/synapse/lib/ast.py +++ b/synapse/lib/ast.py @@ -1283,6 +1283,11 @@ class PivotOut(PivotOper): if form is None: continue + if prop.isrunt: + async for pivo in runt.snap.nodesBy...
Runt pivotout support and docstrings (#<I>) Support wildcard out pivoting for runt props
vertexproject_synapse
train
82b5eb5cf10611cd5c73affca1ec3a09699b7866
diff --git a/axis/stream.py b/axis/stream.py index <HASH>..<HASH> 100644 --- a/axis/stream.py +++ b/axis/stream.py @@ -15,17 +15,13 @@ STATE_PAUSED = 'paused' class MetaDataStream(object): """Gstreamer process.""" - def __init__(self, rtsp_url=None): + def __init__(self, rtsp_url): """Initialize ...
Removed check for rtsp_url, it is mandatory
Kane610_axis
train
3afd58edea05d95a072b0ac13cff4b4aaa856ae4
diff --git a/apptentive/src/main/java/com/apptentive/android/sdk/conversation/ConversationManager.java b/apptentive/src/main/java/com/apptentive/android/sdk/conversation/ConversationManager.java index <HASH>..<HASH> 100644 --- a/apptentive/src/main/java/com/apptentive/android/sdk/conversation/ConversationManager.java +...
Removed active conversation getter assertion since we can't force the dedicated access queue <I>% of a time
apptentive_apptentive-android
train
10156995f0e8abdf7d43a128a8a72d54f0bba10b
diff --git a/src/PatternLab/Config.php b/src/PatternLab/Config.php index <HASH>..<HASH> 100644 --- a/src/PatternLab/Config.php +++ b/src/PatternLab/Config.php @@ -31,7 +31,6 @@ class Config { /** * Clean a given dir from the config file - * NO IDEA WHAT THIS IS USED FOR * @param {String} directory to be...
now know what this is for. used in self::init()
pattern-lab_patternlab-php-core
train
38f122ca6c194ff12f0e4811eceb1c83b4a1a717
diff --git a/src/LeanMapper/Bridges/Nette/DI/LeanMapperExtension.php b/src/LeanMapper/Bridges/Nette/DI/LeanMapperExtension.php index <HASH>..<HASH> 100644 --- a/src/LeanMapper/Bridges/Nette/DI/LeanMapperExtension.php +++ b/src/LeanMapper/Bridges/Nette/DI/LeanMapperExtension.php @@ -79,7 +79,12 @@ class LeanMapperExtens...
Fixed calling of removed setCacheStorage in robot-loader <I>+ with backward compatibility REF: <URL>
Tharos_LeanMapper
train
fe6b07d5f017a54b6d21021ad68f006bc62f8cb2
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Translug [![Build Status](https://travis-ci.org/JellyBool/translug.svg?branch=master)](https://travis-ci.org/JellyBool/translug) +[![Build Status](https://semaphoreci.com/api/v1/jellybool/translug/branch...
add geetter and setter for traslation
JellyBool_translug
train
ca414e1652066dec481612c6d6f8623498fb633d
diff --git a/src/Record.php b/src/Record.php index <HASH>..<HASH> 100755 --- a/src/Record.php +++ b/src/Record.php @@ -155,6 +155,7 @@ class Record extends Origin implements IteratorAggregate /** * Copy the value of one index to another + * * @param string $target * @param string $source ...
Add method copy to get one value of another property
phpzm_data
train
30dd74ad2a426c0b91ee846c034e9061070c4a00
diff --git a/mopidy_spotify/__init__.py b/mopidy_spotify/__init__.py index <HASH>..<HASH> 100644 --- a/mopidy_spotify/__init__.py +++ b/mopidy_spotify/__init__.py @@ -26,8 +26,9 @@ class Extension(ext.Extension): schema['timeout'] = config.Integer(minimum=0) schema['cache_dir'] = config.Path(optional=...
Update mopidy requirement and change to setup()
mopidy_mopidy-spotify
train
3854122143baf0efd4ccc6ed8ac00ee267adf862
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,9 @@ if USE_MYPYC: from mypyc.build import mypycify opt_level = os.getenv("MYPYC_OPT_LEVEL", "3") - ext_modules = mypycify(mypyc_targets, opt_level=opt_level, verbose=True) + ext_modules = mypycify(...
shrink binary wheels by removing debugging info
common-workflow-language_schema_salad
train
36d146daefb8b6af2794243c327d001668ff9912
diff --git a/features/data/cookbooks/transfer_remote_directories/recipes/transfer_directory.rb b/features/data/cookbooks/transfer_remote_directories/recipes/transfer_directory.rb index <HASH>..<HASH> 100644 --- a/features/data/cookbooks/transfer_remote_directories/recipes/transfer_directory.rb +++ b/features/data/cookb...
Changing group nobody to nogroup in test recipe transfer_remote_directories::transfer_directory
chef_chef
train
f959d0b6a7a0f0074e09a2eae7c445075cc9fd41
diff --git a/src/Controller.js b/src/Controller.js index <HASH>..<HASH> 100644 --- a/src/Controller.js +++ b/src/Controller.js @@ -3,7 +3,6 @@ import Module from './Module' import Model from './Model' import {ensurePath, isDeveloping, throwError, isSerializable} from './utils' import VerifyInputProvider from './prov...
feat(providers): remove simplify context provider just confuses having object magically becoming context provider
cerebral_cerebral
train
290c322d135d0148e080176cedd2ea4730384c08
diff --git a/src/cli.js b/src/cli.js index <HASH>..<HASH> 100644 --- a/src/cli.js +++ b/src/cli.js @@ -315,6 +315,9 @@ export default class CLI extends Context { if (results.cmd && typeof results.cmd.action === 'function') { log(`Executing command: ${highlight(results.cmd.name)}`); results.result = awa...
fix(parser): Fixed parser to descend subcommands (commands with an action that is a Command instance).
cb1kenobi_cli-kit
train
215293a1e775628bbf806f737bffaa4c48644261
diff --git a/mopidy_dleyna/client.py b/mopidy_dleyna/client.py index <HASH>..<HASH> 100644 --- a/mopidy_dleyna/client.py +++ b/mopidy_dleyna/client.py @@ -71,6 +71,7 @@ class Servers(collections.Mapping): def __add_server(self, obj): udn = obj["UDN"] obj["URI"] = uritools.uricompose(Extension.ext...
DisplayName fallback for PLEX. PLEX doesn't deliver the field DisplayName.
tkem_mopidy-dleyna
train
3c01fcd9faede9b71412e982da8f59b554449573
diff --git a/lib/Ogone/AbstractRequest.php b/lib/Ogone/AbstractRequest.php index <HASH>..<HASH> 100644 --- a/lib/Ogone/AbstractRequest.php +++ b/lib/Ogone/AbstractRequest.php @@ -37,7 +37,7 @@ abstract class AbstractRequest implements Request protected $ogoneFields = array( 'pspid', 'orderid', 'com', 'amo...
Setting a homeurl is now supported as well (#<I>) Very handy for scenarios where you have multiple sites going through a common OGONE account
marlon-be_marlon-ogone
train
99547eef8f8a373efd567ca336f62d4c6b64d302
diff --git a/test/unit/plugins/providers/virtualbox/config_test.rb b/test/unit/plugins/providers/virtualbox/config_test.rb index <HASH>..<HASH> 100644 --- a/test/unit/plugins/providers/virtualbox/config_test.rb +++ b/test/unit/plugins/providers/virtualbox/config_test.rb @@ -4,22 +4,13 @@ require Vagrant.source_root.joi...
For some weird reason the changes introduced by transpec made this spec fail, this should fix it
hashicorp_vagrant
train
5ea78f55ac01345aa0c8495bbee67b5578f8421f
diff --git a/app/controllers/organizations_controller.rb b/app/controllers/organizations_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/organizations_controller.rb +++ b/app/controllers/organizations_controller.rb @@ -27,6 +27,11 @@ class OrganizationsController < ApplicationController edit_test =...
Fix to a previous commit related to user default env permissions
Katello_katello
train
df83affb96f5bc14a070a9fe9f932f53ee91ff54
diff --git a/server/sonar-web/src/main/js/apps/quality-gates/app.js b/server/sonar-web/src/main/js/apps/quality-gates/app.js index <HASH>..<HASH> 100644 --- a/server/sonar-web/src/main/js/apps/quality-gates/app.js +++ b/server/sonar-web/src/main/js/apps/quality-gates/app.js @@ -23,7 +23,7 @@ import { Router, Route, Ind...
remove unnecessary routerMiddleware from quality gates app
SonarSource_sonarqube
train
bdd98cc9f322231a232240ae3ec76015322c1593
diff --git a/src/Extractors/CsvDictionary.php b/src/Extractors/CsvDictionary.php index <HASH>..<HASH> 100644 --- a/src/Extractors/CsvDictionary.php +++ b/src/Extractors/CsvDictionary.php @@ -22,7 +22,7 @@ class CsvDictionary extends Extractor implements ExtractorInterface file_put_contents($tmpFile, $string); ...
CSV Generator and Extractor needs PHP <I> support
oscarotero_Gettext
train
afc372b8fe4e856b0f6acac6592dd4fecd30c73d
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,9 +64,6 @@ sphinx_gallery_conf = { plot_html_show_source_link = False plot_html_show_formats = False -mathjax_path = 'https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML' -# a...
MNT: Remove setting of mathjax CDN Sphinx does this correctly now.
Unidata_MetPy
train
35bc85625bac2f110b1e1b2ced3837acb0ff8c9e
diff --git a/asammdf/gui/widgets/numeric.py b/asammdf/gui/widgets/numeric.py index <HASH>..<HASH> 100644 --- a/asammdf/gui/widgets/numeric.py +++ b/asammdf/gui/widgets/numeric.py @@ -170,6 +170,7 @@ class Numeric(QtWidgets.QWidget): def keyPressEvent(self, event): key = event.key() modifier = eve...
use left and right keys in the numeric window
danielhrisca_asammdf
train
0bbcb4a9d7f1c7f97e69e137fcd9d6460589fd56
diff --git a/src/EditorconfigChecker.php b/src/EditorconfigChecker.php index <HASH>..<HASH> 100755 --- a/src/EditorconfigChecker.php +++ b/src/EditorconfigChecker.php @@ -1,14 +1,19 @@ <?php - namespace EditorconfigChecker; use EditorconfigChecker\Cli\Cli; use EditorconfigChecker\Cli\Logger; -spl_autoload_regis...
TASK: Fix autoloading mechanism in bin-script
editorconfig-checker_editorconfig-checker.php
train
17e5e1bceb3659b0e9719bc2c8bf570fca6a82da
diff --git a/karaage/applications/emails.py b/karaage/applications/emails.py index <HASH>..<HASH> 100644 --- a/karaage/applications/emails.py +++ b/karaage/applications/emails.py @@ -39,14 +39,11 @@ def remove_url_prefix(url): return url -def send_notify_admin(application, leader=None): +def send_notify_admin(...
Send admin notification for pending project applications too
Karaage-Cluster_karaage
train
ea814aaeb8dc830ab2090dad1e0d67e49cc542ed
diff --git a/src/Webiny/Component/Storage/Driver/Local/LocalStorageDriver.php b/src/Webiny/Component/Storage/Driver/Local/LocalStorageDriver.php index <HASH>..<HASH> 100755 --- a/src/Webiny/Component/Storage/Driver/Local/LocalStorageDriver.php +++ b/src/Webiny/Component/Storage/Driver/Local/LocalStorageDriver.php @@ -3...
Added regex check for date folder structure presence in the given key. This allows us to send an exact key we want with date already included.
Webiny_Framework
train
69c720c6121f8dc88dbcf717cc7acbc24267f0f6
diff --git a/packages/tyranid/src/core/collection.js b/packages/tyranid/src/core/collection.js index <HASH>..<HASH> 100644 --- a/packages/tyranid/src/core/collection.js +++ b/packages/tyranid/src/core/collection.js @@ -644,11 +644,28 @@ export default class Collection { // TODO: handle projection/population opt...
alternate label support for byLabel database queries
tyranid-org_tyranid
train
3dfa639c5f360bcd6e23118c1d136ee1f0ac5d78
diff --git a/sharding-core/src/main/java/io/shardingsphere/core/keygen/KeyGeneratorType.java b/sharding-core/src/main/java/io/shardingsphere/core/keygen/KeyGeneratorType.java index <HASH>..<HASH> 100644 --- a/sharding-core/src/main/java/io/shardingsphere/core/keygen/KeyGeneratorType.java +++ b/sharding-core/src/main/ja...
rename to getKeyGeneratorType()
apache_incubator-shardingsphere
train
c560ce86e5c10b5554d52a84960c5f56b1628562
diff --git a/spikeextractors/extractors/nwbextractors/nwbextractors.py b/spikeextractors/extractors/nwbextractors/nwbextractors.py index <HASH>..<HASH> 100644 --- a/spikeextractors/extractors/nwbextractors/nwbextractors.py +++ b/spikeextractors/extractors/nwbextractors/nwbextractors.py @@ -147,7 +147,7 @@ class NwbReco...
get_unit_spike_train returns spike times in samples
SpikeInterface_spikeextractors
train
d14cb7ab7d9b6118a46c39299d21431cc2cab9ff
diff --git a/source/rafcon/gui/clipboard.py b/source/rafcon/gui/clipboard.py index <HASH>..<HASH> 100644 --- a/source/rafcon/gui/clipboard.py +++ b/source/rafcon/gui/clipboard.py @@ -17,7 +17,7 @@ from gtkmvc import Observable from rafcon.core.state_elements.data_port import InputDataPort, OutputDataPort from rafco...
fix clipbaord copy/paste of ports with already existing names in target state
DLR-RM_RAFCON
train
6c6306dd39be3cdd0ae6bd0d6f012438baef0b5d
diff --git a/salt/modules/network.py b/salt/modules/network.py index <HASH>..<HASH> 100644 --- a/salt/modules/network.py +++ b/salt/modules/network.py @@ -296,4 +296,12 @@ def hwaddr(interface): return None def get(interface): + ''' + Returns a dictionary of with various information about a single + ...
Added docstring to network.get
saltstack_salt
train
959d1101c1d3b1d21b173786654e5d8eb451e3f1
diff --git a/addclear.js b/addclear.js index <HASH>..<HASH> 100644 --- a/addclear.js +++ b/addclear.js @@ -61,13 +61,16 @@ } }); - $this.blur(function() { + $this.blur(function(e) { var self = this; if (options.hideOnBlur) { setTimeout(function() { - $(self).siblings("a[href='#clea...
The clear button is now longer hidden on blur before it can be clicked
skorecky_Add-Clear
train
20b12d5484b8007c64441556d8a966ad84b1bcc4
diff --git a/blocks/dock.js b/blocks/dock.js index <HASH>..<HASH> 100644 --- a/blocks/dock.js +++ b/blocks/dock.js @@ -863,6 +863,12 @@ M.core_dock.genericblock.prototype = { return; } + // Disable the skip anchor when docking + var skipanchor = node.previous(); + if (skipan...
MDL-<I> Accessibility: Docking a block disables the accessible anchors
moodle_moodle
train
060fff682d10aa44f289af8a764b147254390a18
diff --git a/lib/mongo/server/monitor.rb b/lib/mongo/server/monitor.rb index <HASH>..<HASH> 100644 --- a/lib/mongo/server/monitor.rb +++ b/lib/mongo/server/monitor.rb @@ -100,8 +100,8 @@ module Mongo # @deprecated def_delegators :server, :last_scan - # The compressor is determined during the handsh...
RUBY-<I> misc cleanup (#<I>) * report background threads not launched from examples * reduce line length * reformat the hash
mongodb_mongo-ruby-driver
train
c04e2f2341ff22cdb54faf7791ed491a7f8f2aed
diff --git a/Tests/Entity/TamagoTransUnitMetaTest.php b/Tests/Entity/TamagoTransUnitMetaTest.php index <HASH>..<HASH> 100644 --- a/Tests/Entity/TamagoTransUnitMetaTest.php +++ b/Tests/Entity/TamagoTransUnitMetaTest.php @@ -23,5 +23,6 @@ class TamagoTransUnitMetaTest extends \PHPUnit_Framework_TestCase $this->a...
Testcase to check when there are no tips in the database
tamago-db_TamagoTipsManagerBundle
train
43260248b1883aa1bf2e50f184e799ce81a0d834
diff --git a/lib/util/login.js b/lib/util/login.js index <HASH>..<HASH> 100644 --- a/lib/util/login.js +++ b/lib/util/login.js @@ -35,7 +35,7 @@ exports.func = function (args) { return http(httpOpt) .then(function (res) { var body = res.body; - if (res.statusCode === 302) { + if (res.statusCode === 302...
Error on two step verification The function will now properly error when two step verification is enabled on an account. Support two step will not be added because it isn't practical for bots anyways.
sentanos_roblox-js
train
1518ce952f3c9dcb55bcd88c784686c09c0a5a65
diff --git a/competency/tests/external_test.php b/competency/tests/external_test.php index <HASH>..<HASH> 100644 --- a/competency/tests/external_test.php +++ b/competency/tests/external_test.php @@ -2803,4 +2803,43 @@ class core_competency_external_testcase extends externallib_advanced_testcase { $result = ext...
MDL-<I> competencies: test list_competencies
moodle_moodle
train
9d1f7807a4f9ecfbc7cde1579ceb3c584d3ee56b
diff --git a/webhook.go b/webhook.go index <HASH>..<HASH> 100644 --- a/webhook.go +++ b/webhook.go @@ -15,6 +15,7 @@ import ( // Webhook is the Go representation of a webhook registered in Trello's systems. // Used when creating, modifying or deleting webhooks. +// https://developers.trello.com/reference/#webhook-o...
Add comments to public members of webhook (golint)
adlio_trello
train
6f86d475560b05b7a9f62ba2593d9e384387036e
diff --git a/plugins/Admin/src/Controller/AdminAppController.php b/plugins/Admin/src/Controller/AdminAppController.php index <HASH>..<HASH> 100644 --- a/plugins/Admin/src/Controller/AdminAppController.php +++ b/plugins/Admin/src/Controller/AdminAppController.php @@ -4,6 +4,8 @@ namespace Admin\Controller; use App\Co...
feat: allow more image formats for blog post image uploads
foodcoopshop_foodcoopshop
train
08b9b6b89c1fae77496866dda2b78aaebe27baa2
diff --git a/gym_gridworlds/envs/cliff_env.py b/gym_gridworlds/envs/cliff_env.py index <HASH>..<HASH> 100644 --- a/gym_gridworlds/envs/cliff_env.py +++ b/gym_gridworlds/envs/cliff_env.py @@ -21,7 +21,7 @@ class CliffEnv(gym.Env): # begin in start state self.reset() - def _step(self, action): + ...
Catch up with gym version <I>
podondra_gym-gridworlds
train