hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
f8c592a8bc86b41703495bc54dea281e41ec9197
diff --git a/aws/resource_aws_dms_endpoint.go b/aws/resource_aws_dms_endpoint.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_dms_endpoint.go +++ b/aws/resource_aws_dms_endpoint.go @@ -138,17 +138,17 @@ func resourceAwsDmsEndpoint() *schema.Resource { "auth_type": { Type: schema.TypeString, ...
Fix letter case on aws_dms_endpoint.mongodb_settings AWS DMS automatically lowercases the MongoDB settings values. When Terraform runs, it'll change the settings to uppercase, only to have AWS set them to lowercase. Then, next time, Terraform will notice this change, and try again. This means that, if we set the value...
terraform-providers_terraform-provider-aws
train
9fdbc0e6275f6b261a6007ccc87c8d5bf9a6e956
diff --git a/circlator/tasks/all.py b/circlator/tasks/all.py index <HASH>..<HASH> 100644 --- a/circlator/tasks/all.py +++ b/circlator/tasks/all.py @@ -72,7 +72,9 @@ def run(): circlator.common.check_files_exist(files_to_check) - options.genes_fa = os.path.abspath(options.genes_fa) + if options.genes_fa: ...
Stop crashing when genes_fa not given
sanger-pathogens_circlator
train
939c8caf466e5b4b005fc39e76b58cdef7113552
diff --git a/src/Resource/Repository.php b/src/Resource/Repository.php index <HASH>..<HASH> 100644 --- a/src/Resource/Repository.php +++ b/src/Resource/Repository.php @@ -42,6 +42,15 @@ final class Repository implements RepositoryInterface $this->name = $name; } + public function __toString(): string...
Enhancement: Allow to represent repository as string
localheinz_github-changelog
train
ae2281510f9c41686501929999f989ee7283dc74
diff --git a/api/cloudcontroller/ccv2/organization.go b/api/cloudcontroller/ccv2/organization.go index <HASH>..<HASH> 100644 --- a/api/cloudcontroller/ccv2/organization.go +++ b/api/cloudcontroller/ccv2/organization.go @@ -62,9 +62,11 @@ func (client *Client) GetOrganization(guid string) (Organization, Warnings, erro ...
sort org names alphabetically in the orgs command [finishes #<I>]
cloudfoundry_cli
train
ec68727fcf6a18e54f27d1b98234c8d9bc6d60d1
diff --git a/HARK/ConsumptionSaving/ConsIndShockModel.py b/HARK/ConsumptionSaving/ConsIndShockModel.py index <HASH>..<HASH> 100644 --- a/HARK/ConsumptionSaving/ConsIndShockModel.py +++ b/HARK/ConsumptionSaving/ConsIndShockModel.py @@ -2486,7 +2486,7 @@ class IndShockConsumerType(PerfForesightConsumerType): s...
Replace Rnorm with RNrm in ConsIndShockModel.py
econ-ark_HARK
train
af4d87c918a76d13df6a7288ad6a084a80fb8043
diff --git a/sregistry/main/registry/push.py b/sregistry/main/registry/push.py index <HASH>..<HASH> 100644 --- a/sregistry/main/registry/push.py +++ b/sregistry/main/registry/push.py @@ -107,8 +107,11 @@ def push(self, path, name, tag=None): try: r = requests.post(url, data=monitor, headers=headers) + ...
add exception handling for HTTP errors We now catch any HTTP errors that might be thrown from requests - this wasn't happening before as we need to call `raise_for_status()`.
singularityhub_sregistry-cli
train
70e3ff3bcce0b12275e3b3322c2fcf4327255ff8
diff --git a/doc/source/v0.15.0.txt b/doc/source/v0.15.0.txt index <HASH>..<HASH> 100644 --- a/doc/source/v0.15.0.txt +++ b/doc/source/v0.15.0.txt @@ -1048,3 +1048,4 @@ Bug Fixes - Bug in ``NDFrame.loc`` indexing when row/column names were lost when target was a list/ndarray (:issue:`6552`) - Regression in ``NDFrame....
sub-frame assignment of a multi-index frame breaks alignment
pandas-dev_pandas
train
4ed7f056cb392723e077b954879326681e00dcc6
diff --git a/src/Activations/DefaultActivation.php b/src/Activations/DefaultActivation.php index <HASH>..<HASH> 100644 --- a/src/Activations/DefaultActivation.php +++ b/src/Activations/DefaultActivation.php @@ -73,4 +73,36 @@ class DefaultActivation implements Activation { return $this->completedAt; } + + /** + ...
Add getters to the DefaultActivation
digbang_security
train
b67e7c21d9a1e75837037fabb7890423894373fd
diff --git a/archunit/src/main/java/com/tngtech/archunit/core/ClassFileProcessor.java b/archunit/src/main/java/com/tngtech/archunit/core/ClassFileProcessor.java index <HASH>..<HASH> 100644 --- a/archunit/src/main/java/com/tngtech/archunit/core/ClassFileProcessor.java +++ b/archunit/src/main/java/com/tngtech/archunit/co...
Removed Method/Constructor field from CodeUnit
TNG_ArchUnit
train
8fc75ebb2835c730486b1c2aeabcabb89fc91e3e
diff --git a/terraform/transform_resource.go b/terraform/transform_resource.go index <HASH>..<HASH> 100644 --- a/terraform/transform_resource.go +++ b/terraform/transform_resource.go @@ -195,6 +195,11 @@ func (n *graphNodeExpandedResource) stateId() string { return fmt.Sprintf("%s.%d", n.Resource.Id(), n.Index) } ...
terraform: get proper state representation of expanded resources
hashicorp_terraform
train
3018de7312cf71f6af9eb81d2c7167cb164d4949
diff --git a/ncclient/transport/ssh.py b/ncclient/transport/ssh.py index <HASH>..<HASH> 100644 --- a/ncclient/transport/ssh.py +++ b/ncclient/transport/ssh.py @@ -83,6 +83,7 @@ class SSHSession(Session): self._expchunksize = 0 self._curchunksize = 0 self._inendpos = 0 + self._size_num_...
Fixed a bug in parsing chunk frame when its size line is received in two read calls
ncclient_ncclient
train
dd2b5373cfaa0b211bff6932a3b3aee81a68050a
diff --git a/acstools/acs_destripe.py b/acstools/acs_destripe.py index <HASH>..<HASH> 100644 --- a/acstools/acs_destripe.py +++ b/acstools/acs_destripe.py @@ -52,7 +52,7 @@ except ImportError: from astropy.io import fits # LOCAL -from .utils_calib import extract_dark, extract_flash, extract_flatfield +from .uti...
Standardizes the SM4 MJD date and updates the affected modules
spacetelescope_acstools
train
c0f6b307c197652d4300dda2ca9bbc434ae0a71f
diff --git a/lib/neo4j/active_node/query/query_proxy.rb b/lib/neo4j/active_node/query/query_proxy.rb index <HASH>..<HASH> 100644 --- a/lib/neo4j/active_node/query/query_proxy.rb +++ b/lib/neo4j/active_node/query/query_proxy.rb @@ -93,7 +93,11 @@ module Neo4j end def _model_label_string - @m...
When doing QueryProxy queries on models which are subclasses, specify all labels in the `MATCH`
neo4jrb_neo4j
train
bad7d0cd7e4363e4ddda8459afb025b17ad3647b
diff --git a/plugin/geomajas-plugin-wmsclient/wmsclient/src/main/java/org/geomajas/plugin/wmsclient/client/service/WmsServiceImpl.java b/plugin/geomajas-plugin-wmsclient/wmsclient/src/main/java/org/geomajas/plugin/wmsclient/client/service/WmsServiceImpl.java index <HASH>..<HASH> 100644 --- a/plugin/geomajas-plugin-wmsc...
Fix WMSCL-<I> - Font style specified when calculating the legend image URL has apart from the fontName no effect (if Geoserver)
geomajas_geomajas-project-server
train
0d04bc94d5f29895356a47e95d12fc2e2bc4a39c
diff --git a/sos/report/plugins/podman.py b/sos/report/plugins/podman.py index <HASH>..<HASH> 100644 --- a/sos/report/plugins/podman.py +++ b/sos/report/plugins/podman.py @@ -38,7 +38,6 @@ class Podman(Plugin, RedHatPlugin, UbuntuPlugin): 'info', 'images', 'pod ps', - '...
[podman] remove "podman pod ps -a" command "-a" option is not used for a while (if ever) and we collect "podman pod ps" already. Resolves: #<I>
sosreport_sos
train
e51c1d369bdd9c7cd43fc1d0a3eb947ef10223db
diff --git a/lib/opal-jquery/element.rb b/lib/opal-jquery/element.rb index <HASH>..<HASH> 100644 --- a/lib/opal-jquery/element.rb +++ b/lib/opal-jquery/element.rb @@ -316,6 +316,8 @@ class Element < `jQuery` alias_native :next, :next + alias_native :siblings, :siblings + def off(event_name, selector, handler...
Added native jQuery siblings() function. Fixed 'on' handler function to include all four arguments instead of just the event.
opal_opal-jquery
train
2cf18252da193e9b8041b2a922ce7b3fd0f30084
diff --git a/code/admin/CatalogueAdmin.php b/code/admin/CatalogueAdmin.php index <HASH>..<HASH> 100644 --- a/code/admin/CatalogueAdmin.php +++ b/code/admin/CatalogueAdmin.php @@ -58,7 +58,7 @@ class CatalogueAdmin extends ModelAdmin { // Bulk manager $manager = new GridFieldBulkManager(); - ...
Update unlink support in CatalogueAdmin
silvercommerce_catalogue-admin
train
7ebb698c3e22b2cf8ff1da6903fd5a9dddfb71c4
diff --git a/openpnm/core/Workspace.py b/openpnm/core/Workspace.py index <HASH>..<HASH> 100644 --- a/openpnm/core/Workspace.py +++ b/openpnm/core/Workspace.py @@ -34,6 +34,8 @@ class Workspace(dict): raise Exception("A project named " + name + " already exists") if project in self.values(): ...
Updating workplace setter to convert all received values to project
PMEAL_OpenPNM
train
7872e18051a236f0033d932b187734b5841e482a
diff --git a/salt/transport/ipc.py b/salt/transport/ipc.py index <HASH>..<HASH> 100644 --- a/salt/transport/ipc.py +++ b/salt/transport/ipc.py @@ -726,4 +726,5 @@ class IPCMessageSubscriber(IPCClient): self._read_stream_future.exc_info() def __del__(self): - self.close() + if IPCMe...
Run self.close only if GC did not delete the class before the instance
saltstack_salt
train
e2388c6a2024c330a0de84a88624564ff4d0d838
diff --git a/tests/test_widgets.py b/tests/test_widgets.py index <HASH>..<HASH> 100644 --- a/tests/test_widgets.py +++ b/tests/test_widgets.py @@ -16,7 +16,7 @@ class LabelTest(TestCase): Tag.objects.create(name="Advanced Computering", slug="advanced-computering") MyCustomTag.objects.create(name="Coff...
try to fix tests on python <I>
bennylope_django-taggit-labels
train
69e2cad97a06234f11aa20f2272ca84d4e1c40b6
diff --git a/lib/AssetConfigResolver.js b/lib/AssetConfigResolver.js index <HASH>..<HASH> 100644 --- a/lib/AssetConfigResolver.js +++ b/lib/AssetConfigResolver.js @@ -29,8 +29,8 @@ AssetConfigResolver.prototype.resolve = function (assetConfig, fromUrl, cb) { .extend(assetConfig) .parMap(functi...
AssetConfigResolver: Minor cosmetics.
assetgraph_assetgraph
train
2eaf837b1d5208f3f45bab4a55cdddf8632518b5
diff --git a/example/react_withHOC/src/App.test.js b/example/react_withHOC/src/App.test.js index <HASH>..<HASH> 100644 --- a/example/react_withHOC/src/App.test.js +++ b/example/react_withHOC/src/App.test.js @@ -2,6 +2,8 @@ import React from 'react'; import ReactDOM from 'react-dom'; import App from './App'; +import...
fix failing example tests for react_withHOC
i18next_react-i18next
train
0f269433a1708885f467945855af86af8cf586fd
diff --git a/photutils/arrayutils.py b/photutils/arrayutils.py index <HASH>..<HASH> 100644 --- a/photutils/arrayutils.py +++ b/photutils/arrayutils.py @@ -159,13 +159,13 @@ def fix_prf_nan(extracted_prf, prf_nan): ---------- extracted_prf : array PRF array to be fixed. - prf_nan : array + prf_n...
Fixed prf_nan comparison to True
astropy_photutils
train
40eccd14ea5b8433724ae4495f5af1cfe1e6baf5
diff --git a/fs/fs.go b/fs/fs.go index <HASH>..<HASH> 100644 --- a/fs/fs.go +++ b/fs/fs.go @@ -173,7 +173,7 @@ func NewServer( } // Set up the root inode. - root := inode.NewDirInode(bucket, fuseops.RootInodeID, "") + root := inode.NewRootInode(bucket) fs.inodes[fuseops.RootInodeID] = root fs.dirIndex[""] = r...
Fixed build errors in fs.go.
jacobsa_ratelimit
train
b076ff598b9036b7f5a5a285c2244bf84d9a9d5f
diff --git a/tasks/csscss.js b/tasks/csscss.js index <HASH>..<HASH> 100644 --- a/tasks/csscss.js +++ b/tasks/csscss.js @@ -42,7 +42,7 @@ module.exports = function(grunt) { * Sets the minimum number of rules before a match is found. */ if (options.minMatch) { - args.push('-n') + args...
fixed suggestion from jshint.
peterkeating_grunt-csscss
train
80b0931f5d36b5151b13ac6dbdaf454b31692ff3
diff --git a/client/state/account-recovery/test/actions.js b/client/state/account-recovery/test/actions.js index <HASH>..<HASH> 100644 --- a/client/state/account-recovery/test/actions.js +++ b/client/state/account-recovery/test/actions.js @@ -62,12 +62,8 @@ describe( 'account-recovery actions', () => { successRespo...
Simplify the code as one-line lambda expression.
Automattic_wp-calypso
train
3c2f01c91f798bc2ecefbd7c3864dc5e8c5af5c8
diff --git a/paramiko/hostkeys.py b/paramiko/hostkeys.py index <HASH>..<HASH> 100644 --- a/paramiko/hostkeys.py +++ b/paramiko/hostkeys.py @@ -66,7 +66,7 @@ class HostKeyEntry: fields = line.split(' ') if len(fields) < 3: # Bad number of fields - log.warn("Not enough fields fou...
Flip bad known_hosts line to INFO from WARN re #<I>
paramiko_paramiko
train
49eb292a99a3b616305447c4cc16228a8ac2a356
diff --git a/galen-core/src/main/java/com/galenframework/api/GalenPageDump.java b/galen-core/src/main/java/com/galenframework/api/GalenPageDump.java index <HASH>..<HASH> 100644 --- a/galen-core/src/main/java/com/galenframework/api/GalenPageDump.java +++ b/galen-core/src/main/java/com/galenframework/api/GalenPageDump.ja...
#<I> Improved area calculation when cutting objects from screenshot for page dump
galenframework_galen
train
b4545460dc3b6e59afc9ddca6b84f2f847264072
diff --git a/lxd/networks_utils.go b/lxd/networks_utils.go index <HASH>..<HASH> 100644 --- a/lxd/networks_utils.go +++ b/lxd/networks_utils.go @@ -1568,7 +1568,13 @@ func networkGetMacSlice(hwaddr string) []string { return buf } -func networkClearLease(name string, network string, hwaddr string) error { +const ( +...
networks/utils: Updates networkClearLease to support a mode flag Allows specifying whether networkClearLease should clear only IPv4 or IPv6 leases.
lxc_lxd
train
c69fdb56588232d0ede8640cc9fb4846148fc51b
diff --git a/lib/Diaporama.js b/lib/Diaporama.js index <HASH>..<HASH> 100644 --- a/lib/Diaporama.js +++ b/lib/Diaporama.js @@ -19,7 +19,6 @@ function sortSegment (a, b) { return Channels.sort(a[1].channel, b[1].channel); } - function Diaporama (container, data, opts) { // Validate arguments if (!(this inst...
bind some methods to `this` instead of new methods
gre_diaporama
train
0644f9f3a0878193ac9ba3720d406da97b789a9d
diff --git a/test/test_select_manager.rb b/test/test_select_manager.rb index <HASH>..<HASH> 100644 --- a/test/test_select_manager.rb +++ b/test/test_select_manager.rb @@ -140,7 +140,7 @@ module Arel mgr.to_sql.must_be_like %{ SELECT FROM "users" INNER JOIN "users" "users_2" ON omg } end - ...
Rename ambiguous test name to what it actually tests
rails_rails
train
83e4119a1d1110a2201589cb374dc964dd143c5d
diff --git a/commands/initial/templates/tasks/build.js b/commands/initial/templates/tasks/build.js index <HASH>..<HASH> 100644 --- a/commands/initial/templates/tasks/build.js +++ b/commands/initial/templates/tasks/build.js @@ -11,6 +11,7 @@ const inlineResources = require('./inline-resources'); const rollup = require(...
Fixes issue #<I> (#<I>) * Fixes issue #<I> * Detect what version of angular to determine what params to pass ngc
gonzofish_angular-librarian
train
76504ef9f7af53a705c619cac7ff232b1056b8e2
diff --git a/src/util/start-server.js b/src/util/start-server.js index <HASH>..<HASH> 100644 --- a/src/util/start-server.js +++ b/src/util/start-server.js @@ -35,7 +35,7 @@ module.exports = function startServer() { if (packageLookup.hasOwnProperty(key)) { if (assert.isSymlinked(packageLookup[key])) { ...
should be passing packagePath to removeSync
FormidableLabs_whackage
train
4c2e0fb0a4be11cdfb82c73ae5535540c430874b
diff --git a/azure-eventhubs-eph/src/main/java/com/microsoft/azure/eventprocessorhost/AzureStorageCheckpointLeaseManager.java b/azure-eventhubs-eph/src/main/java/com/microsoft/azure/eventprocessorhost/AzureStorageCheckpointLeaseManager.java index <HASH>..<HASH> 100644 --- a/azure-eventhubs-eph/src/main/java/com/microso...
Fix checkpoint get and delete to have correct semantics.
Azure_azure-sdk-for-java
train
6ebe0d854870866c856ab8b7ee1a7670e8da690a
diff --git a/tests/integration/__init__.py b/tests/integration/__init__.py index <HASH>..<HASH> 100644 --- a/tests/integration/__init__.py +++ b/tests/integration/__init__.py @@ -126,7 +126,7 @@ SIMULACRON_JAR = os.getenv('SIMULACRON_JAR', None) CASSANDRA_IP = os.getenv('CASSANDRA_IP', '127.0.0.1') CASSANDRA_DIR = os...
Fix integration tests C* <I> does not exist, changed to <I> ccm_options['version'] can somehow get messed up and be str instead of Version object
datastax_python-driver
train
d9dbca38188a08246612d1815ee54e1faf9028db
diff --git a/src/data/fetch.js b/src/data/fetch.js index <HASH>..<HASH> 100644 --- a/src/data/fetch.js +++ b/src/data/fetch.js @@ -92,7 +92,7 @@ d3plus.data.fetch = function( vars , years ) { //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ // If there's no data, return an empty ar...
fix issue when trying to fetch data if no data is available
alexandersimoes_d3plus
train
35640d41be6b13f29d03ceb59c92c4645a717285
diff --git a/ph-commons/src/main/java/com/helger/commons/xml/serialize/read/XMLReaderFactoryCommons.java b/ph-commons/src/main/java/com/helger/commons/xml/serialize/read/XMLReaderFactoryCommons.java index <HASH>..<HASH> 100644 --- a/ph-commons/src/main/java/com/helger/commons/xml/serialize/read/XMLReaderFactoryCommons....
Removed warning about non-found XML System property
phax_ph-commons
train
aac1f4c48ab7a8f83137ff69798efba4242c8e0b
diff --git a/export.js b/export.js index <HASH>..<HASH> 100644 --- a/export.js +++ b/export.js @@ -182,6 +182,12 @@ function commonExportTests(exportFn, expectedFn, expectedErrorsFn) { const expected = wrappedExpectedFns('NestedValueSetConstraints', this); checkExpected(expected); }); + + it('shou...
Added basic tests for boolean and code constraints.
standardhealth_shr-test-helpers
train
49fb17d9fc62ba93984391b5d82240edfbe0b128
diff --git a/cmd/minikube/cmd/unpause.go b/cmd/minikube/cmd/unpause.go index <HASH>..<HASH> 100644 --- a/cmd/minikube/cmd/unpause.go +++ b/cmd/minikube/cmd/unpause.go @@ -40,6 +40,7 @@ import ( // unpauseCmd represents the docker-pause command var unpauseCmd = &cobra.Command{ Use: "unpause", + Aliases: []string{"...
Add "resume" as an alias for "unpause"
kubernetes_minikube
train
53cc2a64c99e68cbe1d89655d8f7f7589193faf5
diff --git a/pre_commit/commands/run.py b/pre_commit/commands/run.py index <HASH>..<HASH> 100644 --- a/pre_commit/commands/run.py +++ b/pre_commit/commands/run.py @@ -139,6 +139,7 @@ def _has_unstaged_config(runner): def run(runner, args, write=sys_stdout_write_wrapper, environ=os.environ): + no_stash = args.no...
Allow unstaged config when running against files or all-files. Resolves #<I>
pre-commit_pre-commit
train
ef8986ff8d10c9b8171aa4378408921bc2f62939
diff --git a/osmnx/__init__.py b/osmnx/__init__.py index <HASH>..<HASH> 100644 --- a/osmnx/__init__.py +++ b/osmnx/__init__.py @@ -16,5 +16,6 @@ from .save_load import * from .simplify import * from .stats import * from .utils import * +from .footprints import * -__version__ = '0.8.2' +__version__ = '0.8.2' # to b...
added footprints into __init__.py
gboeing_osmnx
train
2b676bb81a4c1d17e2c2368f76fcea9ed4b69870
diff --git a/lib/appsignal/transaction/transaction_formatter.rb b/lib/appsignal/transaction/transaction_formatter.rb index <HASH>..<HASH> 100644 --- a/lib/appsignal/transaction/transaction_formatter.rb +++ b/lib/appsignal/transaction/transaction_formatter.rb @@ -36,13 +36,16 @@ module Appsignal attr_reader :transa...
Make sure time is always present, so we can plot everything
appsignal_appsignal-ruby
train
085768c000570e0a3514b1a991d60549d7f5ba39
diff --git a/spyderlib/utils/programs.py b/spyderlib/utils/programs.py index <HASH>..<HASH> 100644 --- a/spyderlib/utils/programs.py +++ b/spyderlib/utils/programs.py @@ -354,6 +354,6 @@ if __name__ == '__main__': assert(check_version('0.9.4-1', '0.9.4', '>=')) assert(check_version('3.0.0rc1', '3.0.0', '<'))...
Change a test in utils/programs
spyder-ide_spyder
train
fa7951dc4ac8fc04f2c93db46217f40e82187e68
diff --git a/hydpy/core/connectiontools.py b/hydpy/core/connectiontools.py index <HASH>..<HASH> 100644 --- a/hydpy/core/connectiontools.py +++ b/hydpy/core/connectiontools.py @@ -15,11 +15,12 @@ class Connections(object): :class:`~hydpy.core.devicetools.Element` instances. """ - __slots__ = ('master', '_...
Improve iterating over the `Connections` objects of `Device` objects (modules `connectiontools` and `devicetools`). It's now more efficient and avoids both "(name, com)" tuples and `isinstance` checking.
hydpy-dev_hydpy
train
91078c0d21828dfbeebbbabfc4492755655a72b4
diff --git a/coordinator/permissions.go b/coordinator/permissions.go index <HASH>..<HASH> 100644 --- a/coordinator/permissions.go +++ b/coordinator/permissions.go @@ -15,7 +15,7 @@ func (self *Permissions) AuthorizeDeleteQuery(user common.User, db string) (ok b } func (self *Permissions) AuthorizeDropSeries(user co...
Non admin database users shouldn't be able to drop series Fix #<I>
influxdata_influxdb
train
dd02bf7c9b94ff84db2454a6f332072e4ac3929f
diff --git a/pkg/api/dashboard.go b/pkg/api/dashboard.go index <HASH>..<HASH> 100644 --- a/pkg/api/dashboard.go +++ b/pkg/api/dashboard.go @@ -194,6 +194,10 @@ func PostDashboard(c *middleware.Context, cmd m.SaveDashboardCommand) Response { return ApiError(403, "Does not have permission to save this dashboard", nil)...
WIP: adds API check to stop folders being included in folders
grafana_grafana
train
1cadb0e5196ca891507f268c2423bf95c3773845
diff --git a/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm/services/task/impl/model/xml/JaxbContent.java b/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm/services/task/impl/model/xml/JaxbContent.java index <HASH>..<HASH> 100644 --- a/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm...
BZ-<I> - GetTaskContent SOAP operation fails with unmarshalling error (cherry picked from commit 9adc<I>a<I>e<I>d0ffec<I>ca<I>b<I>fd2da4f)
kiegroup_jbpm
train
dd83b1d615f96945ad61f24aa5dbd5a189cfe932
diff --git a/pyisbn/_version.py b/pyisbn/_version.py index <HASH>..<HASH> 100644 --- a/pyisbn/_version.py +++ b/pyisbn/_version.py @@ -1,4 +1,5 @@ # This is pyisbn version 0.6.0 (2011-05-13) +# pylint: disable=C0103, C0111, C0121, W0622 dotted = "0.6.0" libtool = "6:20"
[Tr] Regenerated version info.
JNRowe_pyisbn
train
276c94bc94053cd6e4eda9c3e442010804fabb3f
diff --git a/src/OAuth.php b/src/OAuth.php index <HASH>..<HASH> 100644 --- a/src/OAuth.php +++ b/src/OAuth.php @@ -404,6 +404,20 @@ class OAuth header('Location: ' . $url, true, 303); } + public function generateImplicitAuthoriseUrl(string $redirect_url = null, array $scope = [], array $params = []) ...
Add functions to generate URLs for the implicit grant
samuelthomas2774_oauth-client
train
561983769432759197bcfd7e4382fc254d63a079
diff --git a/SpiffWorkflow/workflow.py b/SpiffWorkflow/workflow.py index <HASH>..<HASH> 100644 --- a/SpiffWorkflow/workflow.py +++ b/SpiffWorkflow/workflow.py @@ -258,6 +258,7 @@ class Workflow(object): elif len(tasks) == 1: task_spec['state'] = status[0] task_spec['task_i...
With the merge, we had additional places where the task_spec['is_decision'] was not getting filled out.
knipknap_SpiffWorkflow
train
4b4c6e612b14251b4b1edf5d58d0214fc5434008
diff --git a/core/src/main/java/org/springframework/security/access/expression/SecurityExpressionRoot.java b/core/src/main/java/org/springframework/security/access/expression/SecurityExpressionRoot.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/springframework/security/access/expression/SecurityExpressio...
Remove unnecessary instantiation in root Fixes: gh-<I>
spring-projects_spring-security
train
abffbf3ba3ede91b0aa5572250bc36b757762278
diff --git a/jsonml-jbst.js b/jsonml-jbst.js index <HASH>..<HASH> 100644 --- a/jsonml-jbst.js +++ b/jsonml-jbst.js @@ -19,7 +19,7 @@ if ("undefined" === typeof window.JsonML) { window.JsonML = {}; } -JsonML.BST = function(/*JsonML+BST*/ jbst) { +JsonML.BST = function(/*JBST*/ jbst) { var self = this; ...
- renaming JsonML+BST to JBST to avoid Binary Search Tree confusion - pointing JsonML to JsonFx for JBST implementation
mckamey_jsonml
train
30e55a6f5273604217961a56514968a0cb9d8006
diff --git a/dev/com.ibm.ws.org.apache.jasper.el/src/org/apache/el/util/ReflectionUtil.java b/dev/com.ibm.ws.org.apache.jasper.el/src/org/apache/el/util/ReflectionUtil.java index <HASH>..<HASH> 100644 --- a/dev/com.ibm.ws.org.apache.jasper.el/src/org/apache/el/util/ReflectionUtil.java +++ b/dev/com.ibm.ws.org.apache.ja...
Apply additional patch from BZ <I> Correction hashCode & equals in ReflectionUtil
OpenLiberty_open-liberty
train
6c2a89493e31d580de686e562014096e3043f6dd
diff --git a/datapoint/Forecast.py b/datapoint/Forecast.py index <HASH>..<HASH> 100644 --- a/datapoint/Forecast.py +++ b/datapoint/Forecast.py @@ -2,9 +2,10 @@ import datetime from datapoint.exceptions import APIException class Forecast(): - def __init__(self, api_key=""): + def __init__(self, api_key="", fre...
Add argement and element to let forecast know frequency
jacobtomlinson_datapoint-python
train
b969b17092367b9373eaedce1a3fed0f48ad6ca2
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -1006,7 +1006,7 @@ func (cl *Client) assertRequestHeat() { func (me *Client) replenishConnRequests(t *torrent, c *connection) { me.DownloadStrategy.FillRequests(t, c) - me.assertRequestHeat() + //me.assertRequestHeat(...
Disable request heat assertion for now Probably want a flag to do intensive checks like this
anacrolix_torrent
train
c47b1018529744ff7fbe4f6b4c8b5ae1bd9dc002
diff --git a/.babelrc.js b/.babelrc.js index <HASH>..<HASH> 100644 --- a/.babelrc.js +++ b/.babelrc.js @@ -1,8 +1,8 @@ module.exports = api => ({ presets: [ ['@babel/env', { - targets: api.env() === 'test' ? { node: 'current' } : { node: '10' }, + targets: { node: api.env('test') ? 'current' : '10' }...
babelrc.js is slightly more idiomatic
perrin4869_gulp-i18next-conv
train
fda0d263677cf81ff82c261c5ea4f4f892b2d9a8
diff --git a/fritzconnection/core/fritzconnection.py b/fritzconnection/core/fritzconnection.py index <HASH>..<HASH> 100644 --- a/fritzconnection/core/fritzconnection.py +++ b/fritzconnection/core/fritzconnection.py @@ -38,6 +38,13 @@ FRITZ_TR64_DESC_FILE = "tr64desc.xml" FRITZ_DESCRIPTIONS = [FRITZ_IGD_DESC_FILE, FRIT...
Fix Connection pool is full, discarding connection (#<I>) * Fix Connection pool is full, discarding connection * Change approach * Address review suggestions * Added info for documentation + moved const * Update fritzconnection.py
kbr_fritzconnection
train
51248e318e2681268aa1d5347933ecdc143b56bd
diff --git a/shared/menubar/index.render.desktop.js b/shared/menubar/index.render.desktop.js index <HASH>..<HASH> 100644 --- a/shared/menubar/index.render.desktop.js +++ b/shared/menubar/index.render.desktop.js @@ -83,8 +83,7 @@ class Render extends Component<void, Props, State> { smallMode: true, private...
fixing click on menu (#<I>)
keybase_client
train
9a798a56fd5c0ef226f329b4fbef2923e7acf693
diff --git a/cherrypy/_cpwsgiserver.py b/cherrypy/_cpwsgiserver.py index <HASH>..<HASH> 100644 --- a/cherrypy/_cpwsgiserver.py +++ b/cherrypy/_cpwsgiserver.py @@ -21,6 +21,14 @@ for _ in ("EPIPE", "ETIMEDOUT", "ECONNREFUSED", "ECONNRESET", # de-dupe the list socket_errors_to_ignore = dict.fromkeys(socket_errors_to_ig...
Fix for #<I> (_cpwsgiserver should concatenate multiple incoming headers).
cherrypy_cheroot
train
e146b01e63afc643bfc66704addef311899bc0f2
diff --git a/grip/browser.py b/grip/browser.py index <HASH>..<HASH> 100644 --- a/grip/browser.py +++ b/grip/browser.py @@ -1,5 +1,6 @@ import socket import webbrowser +import time def is_server_running(host, port): @@ -8,7 +9,8 @@ def is_server_running(host, port): host and port. """ sock = socket...
Stop browser opening consuming all the sockets
joeyespo_grip
train
cb42b975231d6934027411beecdf21f231996143
diff --git a/presto-main/src/main/java/com/facebook/presto/sql/planner/InputExtractor.java b/presto-main/src/main/java/com/facebook/presto/sql/planner/InputExtractor.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/sql/planner/InputExtractor.java +++ b/presto-main/src/main/java/com/f...
Include table in "inputs" field even if list of columns is empty Add an entry to the inputs field in the query endpoint (/v1/query/{id}) for each table that participates in the plan, regardless of whether tablescan nodes reference any columns (e.g., COUNT(*) queries) Fixes issue #<I>
prestodb_presto
train
1ae479d29e334508aadf0d89d0b0afb88d83990a
diff --git a/openpnm/models/physics/hydraulic_conductance.py b/openpnm/models/physics/hydraulic_conductance.py index <HASH>..<HASH> 100644 --- a/openpnm/models/physics/hydraulic_conductance.py +++ b/openpnm/models/physics/hydraulic_conductance.py @@ -44,7 +44,7 @@ def generic_hydraulic(target, phase = target.proje...
added [throats] to hydraulic cond Mu_t (so that it works on subdomains) [ci skip]
PMEAL_OpenPNM
train
63aab4bb376ca37c01ac8208804b639a8a9283bc
diff --git a/wafer/management/commands/pycon_speaker_contact_details.py b/wafer/management/commands/pycon_speaker_contact_details.py index <HASH>..<HASH> 100644 --- a/wafer/management/commands/pycon_speaker_contact_details.py +++ b/wafer/management/commands/pycon_speaker_contact_details.py @@ -37,7 +37,7 @@ class Comma...
re-add errornously dropped email address
CTPUG_wafer
train
0df65c16202805610a7b88c103b3f79932b1b113
diff --git a/udata/harvest/actions.py b/udata/harvest/actions.py index <HASH>..<HASH> 100644 --- a/udata/harvest/actions.py +++ b/udata/harvest/actions.py @@ -76,6 +76,7 @@ def validate_source(ident, comment=None): if current_user.is_authenticated(): source.validation.by = current_user._get_current_object...
Ensure harvest source validation triggers an harvest launch
opendatateam_udata
train
e1bfdef0132134bb827674fa3553a1c5aeb5c464
diff --git a/librecaptcha/recaptcha.py b/librecaptcha/recaptcha.py index <HASH>..<HASH> 100644 --- a/librecaptcha/recaptcha.py +++ b/librecaptcha/recaptcha.py @@ -360,7 +360,7 @@ class ReCaptcha: index = self.js_strings.index(id, start) for i in range(FIND_GOAL_SEARCH_DISTANCE): ...
re.search() instead of match() for goal searching
nickolas360_librecaptcha
train
c327e086a36511657eaab54555d5a248620211f9
diff --git a/lib/components/map/endpoint.js b/lib/components/map/endpoint.js index <HASH>..<HASH> 100644 --- a/lib/components/map/endpoint.js +++ b/lib/components/map/endpoint.js @@ -11,15 +11,16 @@ export default class Endpoint extends Component { const location = constructLocation(e.target.getLatLng()) setL...
feat(map): Improve styling of from/to endpoints; hide from/end transitive places
opentripplanner_otp-react-redux
train
d0773dfc16956b0aed68015df7cacfbec5111e14
diff --git a/asteval/asteval.py b/asteval/asteval.py index <HASH>..<HASH> 100644 --- a/asteval/asteval.py +++ b/asteval/asteval.py @@ -748,11 +748,14 @@ class Interpreter(object): keywords = {} if func == print: keywords['file'] = self.writer - for key in node.keywords: ...
explicitly check for repeated keywords in function call, for Py<I>
newville_asteval
train
d3499d2c17e73ab8ae734309527cad1fcad43df1
diff --git a/src/passes/tone-mapping.js b/src/passes/tone-mapping.js index <HASH>..<HASH> 100644 --- a/src/passes/tone-mapping.js +++ b/src/passes/tone-mapping.js @@ -140,7 +140,7 @@ export class ToneMappingPass extends Pass { if(typeof x === "number" && x > 0) { this.renderTargetLuminosity.setSize(x, x); - ...
Added a reminder to the tone mapping pass. Sometimes the demo renders a black screen when the render target sizes are changed. Must investigate further.
vanruesc_postprocessing
train
21f663011115588f47660648e3ea683cd3929390
diff --git a/lib/casio.js b/lib/casio.js index <HASH>..<HASH> 100644 --- a/lib/casio.js +++ b/lib/casio.js @@ -344,6 +344,96 @@ AbstractModel.cql = function(qry, args, callback) { }; + +/** + Model.prototype.toJSON + + Convert the model into a json representation + + Only serialize what's ...
make toJSON part of the AbstractModel & added a few missing types
studybreak_casio
train
7b3fd8daa722f043dd6d3d637679cbff0751142d
diff --git a/fixes/update_pull_request_history_actor.rb b/fixes/update_pull_request_history_actor.rb index <HASH>..<HASH> 100755 --- a/fixes/update_pull_request_history_actor.rb +++ b/fixes/update_pull_request_history_actor.rb @@ -31,12 +31,10 @@ class GHTUpdatePullRequestHistoryActor < GHTorrent::Command @ght.get...
Accept event ids as input
gousiosg_github-mirror
train
29515863bccaab75256cea1005c579c9e9940a48
diff --git a/web/routes.go b/web/routes.go index <HASH>..<HASH> 100644 --- a/web/routes.go +++ b/web/routes.go @@ -83,7 +83,7 @@ func (sc *ServiceConfig) getRoutes() []rest.Route { rest.Route{"GET", "/services/vhosts", gz(sc.authorizedClient(restGetVirtualHosts))}, rest.Route{"PUT", "/services/:serviceId/endpoint...
Updated routes for vhost enable/disable to grab the full hostname
control-center_serviced
train
739543a94becb631145a54250f707a3818dd0448
diff --git a/module/Ev3.js b/module/Ev3.js index <HASH>..<HASH> 100644 --- a/module/Ev3.js +++ b/module/Ev3.js @@ -116,7 +116,7 @@ var Ev3_base = function(btport){ this.OUTPUT_BODY_SEQ = "407E018200008"; this.TERMINATE_SEQ = new Buffer("070055008000000201","hex"); - this.sp = new SerialPort("/dev/tty.EV3-SerialP...
Update Ev3.js You had the serial port hard coded. I found the error when I was trying to make it work on windows
wenchaojiang_ev3-Nodejs-bluetooth-Api
train
864fc7b3188982bd08cc7cf143a367f96f970aa1
diff --git a/lib/geocoder/stores/active_record.rb b/lib/geocoder/stores/active_record.rb index <HASH>..<HASH> 100644 --- a/lib/geocoder/stores/active_record.rb +++ b/lib/geocoder/stores/active_record.rb @@ -90,7 +90,7 @@ module Geocoder::Store # * +:exclude+ - an object to exclude (used by the +nearbys+ method) ...
Add and use using_sqlite? method.
alexreisner_geocoder
train
34a44909d1c272da1fa6ed31bb8afe52d1127938
diff --git a/airflow/hooks/http_hook.py b/airflow/hooks/http_hook.py index <HASH>..<HASH> 100644 --- a/airflow/hooks/http_hook.py +++ b/airflow/hooks/http_hook.py @@ -141,8 +141,7 @@ class HttpHook(BaseHook): response.raise_for_status() except requests.exceptions.HTTPError: self.log.e...
[AIRFLOW-<I>] http hook logs response body for any failure (#<I>)
apache_airflow
train
c23c64437779e94b982dac4c6993eee73bed7ee0
diff --git a/core/bootstrap/src/main/java/org/wildfly/swarm/bootstrap/env/ApplicationEnvironment.java b/core/bootstrap/src/main/java/org/wildfly/swarm/bootstrap/env/ApplicationEnvironment.java index <HASH>..<HASH> 100644 --- a/core/bootstrap/src/main/java/org/wildfly/swarm/bootstrap/env/ApplicationEnvironment.java +++ ...
SWARM-<I>: Dependencies from a Dependency Tree are not in the classpath
thorntail_thorntail
train
1d1e27a8f520b591147a00fb0c84538d5da5faee
diff --git a/src/nwmatcher.js b/src/nwmatcher.js index <HASH>..<HASH> 100644 --- a/src/nwmatcher.js +++ b/src/nwmatcher.js @@ -553,7 +553,7 @@ NW.Dom = function(global) { } // *** Dynamic pseudo-classes - // CSS3 :not, :root, :empty, :contains, :enabled, :disabled, :checked, :target + ...
removed duplicate :root and :empty cases, were moved to structural peudo-classes
dperini_nwmatcher
train
dc4abd902cfa241e6cdeedc7dd5a6ef8eec74310
diff --git a/biojava-structure/src/main/java/org/biojava/nbio/structure/StructureTools.java b/biojava-structure/src/main/java/org/biojava/nbio/structure/StructureTools.java index <HASH>..<HASH> 100644 --- a/biojava-structure/src/main/java/org/biojava/nbio/structure/StructureTools.java +++ b/biojava-structure/src/main/j...
Ignore waters when calculating ligand proximity
biojava_biojava
train
d7923fc459788ec6bf56e1fb16de9ccd17e7a27d
diff --git a/gatspy/periodic/optimizer.py b/gatspy/periodic/optimizer.py index <HASH>..<HASH> 100644 --- a/gatspy/periodic/optimizer.py +++ b/gatspy/periodic/optimizer.py @@ -63,7 +63,7 @@ class LinearScanOptimizer(PeriodicOptimizer): sys.stdout.flush() # Compute the score on the initial grid - ...
BUG: make sure indices are integers
astroML_gatspy
train
176020acd258e805c117cc4d1d189040e42095ae
diff --git a/blockstore/tests/scenarios/nameop_parsing.py b/blockstore/tests/scenarios/nameop_parsing.py index <HASH>..<HASH> 100644 --- a/blockstore/tests/scenarios/nameop_parsing.py +++ b/blockstore/tests/scenarios/nameop_parsing.py @@ -26,8 +26,9 @@ import pybitcoin import blockstore import binascii import sys - ...
sync with blockstored parsing API
blockstack_blockstack-core
train
3b9add94b666d689b5b6be88fbfe3c265a0e72da
diff --git a/exa/cms/base.py b/exa/cms/base.py index <HASH>..<HASH> 100644 --- a/exa/cms/base.py +++ b/exa/cms/base.py @@ -8,6 +8,7 @@ This module provides the base classes and metaclasses for database tables. """ import hashlib import pandas as pd +from six import string_types from numbers import Integral from da...
Fix to support py2 string_types
exa-analytics_exa
train
ba589430e084f2a0311ac9f2e1a9c58baf377fba
diff --git a/lib/components/form/date-time-preview.js b/lib/components/form/date-time-preview.js index <HASH>..<HASH> 100644 --- a/lib/components/form/date-time-preview.js +++ b/lib/components/form/date-time-preview.js @@ -48,7 +48,7 @@ class DateTimePreview extends Component { ) return ( - <div classN...
feat(form): Make full date/time tab clickable in desktop
opentripplanner_otp-react-redux
train
5e8dced0b226555c6814f9c0b939b60944812d08
diff --git a/lib/active_mocker/rspec_helper.rb b/lib/active_mocker/rspec_helper.rb index <HASH>..<HASH> 100644 --- a/lib/active_mocker/rspec_helper.rb +++ b/lib/active_mocker/rspec_helper.rb @@ -9,6 +9,7 @@ RSpec.configure do |config| unless ENV["RUN_WITH_RAILS"] && self.class.metadata[:rails_compatible] ac...
Enhancement - stub ActiveRecord::RecordNotFound with "active_mocker/rspec_helper"
zeisler_active_mocker
train
b1726b73fac9e8bea45c2a9b1d771745f0ae57b1
diff --git a/jarn/mkrelease/confparser.py b/jarn/mkrelease/confparser.py index <HASH>..<HASH> 100644 --- a/jarn/mkrelease/confparser.py +++ b/jarn/mkrelease/confparser.py @@ -15,15 +15,15 @@ class MultipleValueError(Error): class errors2warnings(object): """Turn ConfigParser.Errors into warnings.""" - def __...
Fix badly choosen name: context -> parser.
Jarn_jarn.mkrelease
train
29642944027303e9cfdbd471c72277a608fa3937
diff --git a/shared/common-adapters/avatar.desktop.js b/shared/common-adapters/avatar.desktop.js index <HASH>..<HASH> 100644 --- a/shared/common-adapters/avatar.desktop.js +++ b/shared/common-adapters/avatar.desktop.js @@ -2,7 +2,7 @@ import React, {Component} from 'react' import {resolveImageAsURL} from '../../des...
Make icons and avatars unselectable
keybase_client
train
7707516f0ae11be536a1fcd57f1c71f10ffa957f
diff --git a/pwkit/environments/casa/util.py b/pwkit/environments/casa/util.py index <HASH>..<HASH> 100644 --- a/pwkit/environments/casa/util.py +++ b/pwkit/environments/casa/util.py @@ -73,10 +73,23 @@ def sanitize_unicode (item): def datadir (*subdirs): import os.path + data = None if 'CASAPATH' in ...
pwkit/environments/casa/util.py: improve datadir() for Conda distrib
pkgw_pwkit
train
8123c08f3bd7152e5b9b9d24a46e56d05f543dfa
diff --git a/d1_libclient_python/src/d1_client/__init__.py b/d1_libclient_python/src/d1_client/__init__.py index <HASH>..<HASH> 100644 --- a/d1_libclient_python/src/d1_client/__init__.py +++ b/d1_libclient_python/src/d1_client/__init__.py @@ -21,7 +21,7 @@ ''' ''' -__version__ = "1.0.0c5" +__version__ = "1.0.0c6" ...
Moving to RC6 (<I>c6). Adding PyDev configuration files to the svn:ignore property.
DataONEorg_d1_python
train
6b2c3e047c8145b6bb3792709b9da00351b87cd9
diff --git a/src/cjs.js b/src/cjs.js index <HASH>..<HASH> 100644 --- a/src/cjs.js +++ b/src/cjs.js @@ -1420,7 +1420,13 @@ var MapConstraint = function(options) { proto.has = proto.containsKey = function(key) { var ki = this._find_key(key, true, true); var key_index = ki.i; - return key_index >= 0; + if(key_in...
Added getter in update to ensure dependency gets added
soney_constraintjs
train
17e75bf19281f26c368dc96d1c7f6d782ea87628
diff --git a/apis/fs/index.js b/apis/fs/index.js index <HASH>..<HASH> 100644 --- a/apis/fs/index.js +++ b/apis/fs/index.js @@ -1,5 +1,6 @@ exports.init = function (engine, config) { - engine.registerAPI('fs', function(manifest){ + engine.registerAPI('fs', function(runner){ + var manifest = runner.getManifest(); ...
[FEATURE] Expose the runner instance to API modules.
codius-deprecated_codius-engine
train
92297aeb396cd574e51bb2598046c25268734521
diff --git a/Form/ReportType.php b/Form/ReportType.php index <HASH>..<HASH> 100644 --- a/Form/ReportType.php +++ b/Form/ReportType.php @@ -6,8 +6,6 @@ use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolverInterface; -use Chill\...
Removing CustomFieldsGroupToIdTransformer
Chill-project_Report
train
77fcf1965619765fd33141c495b4823d36cf9b42
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -32,7 +32,8 @@ def mock_app :analyser => mock('analyser', :analyse => "some_result", :analysis_methods => Module.new), :generator => mock('generator', :generate => "SOME_GE...
Oops specs were failing due to mock
markevans_dragonfly
train
de502f7d6cb0231643ba93d4103a03807c5a1f46
diff --git a/src/Symfony/Component/Console/Helper/Table.php b/src/Symfony/Component/Console/Helper/Table.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Console/Helper/Table.php +++ b/src/Symfony/Component/Console/Helper/Table.php @@ -454,11 +454,16 @@ class Table * @param int $line * * ...
[Console] Provide a bugfix where an array could be passed
symfony_symfony
train
73cb37ce0365048fca488ca3bff852fbbfff50c6
diff --git a/core/testframework/src/main/java/org/overture/test/framework/ResultTestCase4.java b/core/testframework/src/main/java/org/overture/test/framework/ResultTestCase4.java index <HASH>..<HASH> 100644 --- a/core/testframework/src/main/java/org/overture/test/framework/ResultTestCase4.java +++ b/core/testframework/...
changed test framework to use a printwriter for result compare such that a message can be issue describing the error
overturetool_overture
train
ca11ef77acf60fdee5f20fbdb4c3e6ce5f2cbacc
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index <HASH>..<HASH> 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py @@ -17,6 +17,7 @@ import re import copy import threading import sys +import six try: from urllib.parse import urlparse @@ -1083,13 +1084,8 @@ class Mastodon: """...
use six instead of relying on python version
halcy_Mastodon.py
train
b499c0a357180adff34452f035aa60c522ec6665
diff --git a/spec/support/oauth_helpers.rb b/spec/support/oauth_helpers.rb index <HASH>..<HASH> 100644 --- a/spec/support/oauth_helpers.rb +++ b/spec/support/oauth_helpers.rb @@ -1,29 +1,22 @@ module OauthHelpers def construct_oauth FakeWeb.allow_net_connect = false - qb_key = "key" - qb_secret = "secree...
Refactor oauth helper to help test real requests
ruckus_quickbooks-ruby
train
6ecf6e71d1fcf73e33066098f9aea5ef4cf71c6b
diff --git a/modules/uadetector-resources/src/test/java/net/sf/uadetector/OperatingSystemExamplesReader.java b/modules/uadetector-resources/src/test/java/net/sf/uadetector/OperatingSystemExamplesReader.java index <HASH>..<HASH> 100644 --- a/modules/uadetector-resources/src/test/java/net/sf/uadetector/OperatingSystemExa...
Removed a @Test annotation and made the classes package private
before_uadetector
train
5dcc41951a20f4bcb362d07efead4cb3baaed96c
diff --git a/aeron-driver/src/main/java/uk/co/real_logic/aeron/driver/DriverConductor.java b/aeron-driver/src/main/java/uk/co/real_logic/aeron/driver/DriverConductor.java index <HASH>..<HASH> 100644 --- a/aeron-driver/src/main/java/uk/co/real_logic/aeron/driver/DriverConductor.java +++ b/aeron-driver/src/main/java/uk/c...
[Java]: Added default headers to the connection log buffer.
real-logic_aeron
train
65e043c12e12dff83a9f19b4e4bec55bf68540a6
diff --git a/django_qbe/forms.py b/django_qbe/forms.py index <HASH>..<HASH> 100644 --- a/django_qbe/forms.py +++ b/django_qbe/forms.py @@ -175,9 +175,14 @@ class BaseQueryByExampleFormSet(BaseFormSet): join_field = qn(over_split[1]) if model in self._models: ...
Fixes #<I>. Maybe a backwards compatibility problem between Django <I> and <I>
versae_qbe
train
eb14c509aa9523fbd0ad98b3342cd701521d340c
diff --git a/.travis.yml b/.travis.yml index <HASH>..<HASH> 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ sudo: false python: - "2.7" - - "3.2" - "3.3" - "3.4" - "3.5" diff --git a/surveygizmo/api/__init__.py b/surveygizmo/api/__init__.py index <HASH>..<HASH> 100644 --- a/surveygizmo/api/__...
Fix python compatibility problems
rpkilby_SurveyGizmo
train
fc41ceb2dbbd7a408a3ea96d4dff330757e95a2f
diff --git a/paxtools-core/src/main/java/org/biopax/paxtools/controller/ModelUtils.java b/paxtools-core/src/main/java/org/biopax/paxtools/controller/ModelUtils.java index <HASH>..<HASH> 100644 --- a/paxtools-core/src/main/java/org/biopax/paxtools/controller/ModelUtils.java +++ b/paxtools-core/src/main/java/org/biopax/p...
Adds a new method to ModelUtils; somewhat refs PathwayCommons/cpath2#<I>
BioPAX_Paxtools
train
d60826ef171e424e2e403f3017d8c4f66f556ff6
diff --git a/src/test/java/net/rubyeye/xmemcached/test/unittest/ConnectionPoolMemcachedClientTest.java b/src/test/java/net/rubyeye/xmemcached/test/unittest/ConnectionPoolMemcachedClientTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/net/rubyeye/xmemcached/test/unittest/ConnectionPoolMemcachedClientTest.java +...
repair ConnectionPoolMemcachedClientTest
killme2008_xmemcached
train