diff
stringlengths
65
26.7k
message
stringlengths
7
9.92k
diff --git a/test/unit/sandbox-libraries/pm.test.js b/test/unit/sandbox-libraries/pm.test.js index <HASH>..<HASH> 100644 --- a/test/unit/sandbox-libraries/pm.test.js +++ b/test/unit/sandbox-libraries/pm.test.js @@ -497,7 +497,6 @@ describe('sandbox library - pm api', function () { context.execute(` ...
Test: do not assert for private class name
diff --git a/lib/taps/data_stream.rb b/lib/taps/data_stream.rb index <HASH>..<HASH> 100644 --- a/lib/taps/data_stream.rb +++ b/lib/taps/data_stream.rb @@ -167,7 +167,7 @@ class DataStream log.debug "DataStream#fetch_from_resource state -> #{state.inspect}" state[:chunksize] = Taps::Utils.calculate_chunksize(s...
need to encode self.to_hash specifically
diff --git a/upload/admin/model/marketing/marketing.php b/upload/admin/model/marketing/marketing.php index <HASH>..<HASH> 100644 --- a/upload/admin/model/marketing/marketing.php +++ b/upload/admin/model/marketing/marketing.php @@ -43,7 +43,7 @@ class ModelMarketingMarketing extends Model { $implode[] = "o.order_sta...
Marketing Tracking doesn't count orders
diff --git a/lib/buckaruby/version.rb b/lib/buckaruby/version.rb index <HASH>..<HASH> 100644 --- a/lib/buckaruby/version.rb +++ b/lib/buckaruby/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Buckaruby - VERSION = "1.2.0beta" + VERSION = "1.2.0" end
Update version to <I>.
diff --git a/main/app/Routing/ApiLoader.php b/main/app/Routing/ApiLoader.php index <HASH>..<HASH> 100644 --- a/main/app/Routing/ApiLoader.php +++ b/main/app/Routing/ApiLoader.php @@ -228,11 +228,13 @@ class ApiLoader extends Loader } } + $mapping = array_merge($defaults, self::DEFAULT_MAP...
Update ApiLoader.php (#<I>) better in that order
diff --git a/comparer/comparer_test.go b/comparer/comparer_test.go index <HASH>..<HASH> 100644 --- a/comparer/comparer_test.go +++ b/comparer/comparer_test.go @@ -181,3 +181,37 @@ func TestDetectsModifiedContent(t *testing.T) { 3, ) } + +func TestDetectsPartialBlockAtEnd(t *testing.T) { + const BLOCK_SIZE = 4 + v...
Adding test for partial trailing blocks in the comparer Expected failure for now
diff --git a/vertica_python/vertica/connection.py b/vertica_python/vertica/connection.py index <HASH>..<HASH> 100644 --- a/vertica_python/vertica/connection.py +++ b/vertica_python/vertica/connection.py @@ -31,7 +31,7 @@ class Connection(object): self._cursor = Cursor(self, None) self.options.setdefau...
Remove calls to unused `query` function in `Connection` class There were some calls to a nonexistent function `query` in the `initialize_connection` function of the `Connection` class. These appear to be artifacts from when porting the Ruby codebase. The queries being made were related to setting a role for the curre...
diff --git a/indexing-service/src/main/java/io/druid/indexing/overlord/http/OverlordResource.java b/indexing-service/src/main/java/io/druid/indexing/overlord/http/OverlordResource.java index <HASH>..<HASH> 100644 --- a/indexing-service/src/main/java/io/druid/indexing/overlord/http/OverlordResource.java +++ b/indexing-s...
Add the correct createdTime to waiting tasks (#<I>)
diff --git a/system/Filters/CSRF.php b/system/Filters/CSRF.php index <HASH>..<HASH> 100644 --- a/system/Filters/CSRF.php +++ b/system/Filters/CSRF.php @@ -72,7 +72,7 @@ class CSRF implements FilterInterface * @param array|null $arguments * * @return mixed - * @throws \E...
Phpstorm keeps change the @throws doc
diff --git a/lib/tjbot.js b/lib/tjbot.js index <HASH>..<HASH> 100644 --- a/lib/tjbot.js +++ b/lib/tjbot.js @@ -142,7 +142,7 @@ TJBot.prototype.services = ['conversation', 'language_translator', 'speech_to_te TJBot.prototype.defaultConfiguration = { verboseLogging: false, robot: { - gender: 'male' // s...
again with the comma!
diff --git a/build/rollup.config.min.js b/build/rollup.config.min.js index <HASH>..<HASH> 100644 --- a/build/rollup.config.min.js +++ b/build/rollup.config.min.js @@ -1,8 +1,12 @@ import base from './rollup.config.base'; import uglify from 'rollup-plugin-uglify'; +import replace from 'rollup-plugin-replace'; const {...
[updare] update build for min what: why: how:
diff --git a/better_apidoc.py b/better_apidoc.py index <HASH>..<HASH> 100644 --- a/better_apidoc.py +++ b/better_apidoc.py @@ -263,7 +263,7 @@ def _get_mod_ns(name, fullname, includeprivate): 'name': name, 'fullname': fullname, 'members': [], 'functions': [], 'classes': [], 'exceptions': [], 'subpacka...
Added documentation to package and module as 'doc'
diff --git a/test/tests.es6.js b/test/tests.es6.js index <HASH>..<HASH> 100644 --- a/test/tests.es6.js +++ b/test/tests.es6.js @@ -105,3 +105,23 @@ describe("collatz generator", function() { check(gen(82), eightyTwo, 110); }); }); + +describe("try-catch generator", function() { + function *gen(x) { + yield...
Add a test of try-catch statements.
diff --git a/zarr/core.py b/zarr/core.py index <HASH>..<HASH> 100644 --- a/zarr/core.py +++ b/zarr/core.py @@ -1840,6 +1840,19 @@ class Array(object): def hexdigest(self, hashname="sha1"): """ Compute a checksum for the data. Default uses sha1 for speed. + + Examples + -------- + ...
Provide a couple examples of hexdigest
diff --git a/lib/__init__.php b/lib/__init__.php index <HASH>..<HASH> 100755 --- a/lib/__init__.php +++ b/lib/__init__.php @@ -73,7 +73,7 @@ require_once('support/events/EventFiringWebElement.php'); // touch require_once('interactions/WebDriverTouchScreen.php'); -require_once('remote/RemoteTouch.php'); +require_onc...
Fixed incorrect RemoteTouchScreen.php filename in __init__.php on line <I>
diff --git a/src/Authenticator.php b/src/Authenticator.php index <HASH>..<HASH> 100644 --- a/src/Authenticator.php +++ b/src/Authenticator.php @@ -12,7 +12,7 @@ use Symfony\Component\Security\Core\User\UserProviderInterface; use Symfony\Component\Security\Core\Exception\BadCredentialsException; use Symfony\Component\...
Typehint the interface rather than the implemenation
diff --git a/lib/heroics/client_generator.rb b/lib/heroics/client_generator.rb index <HASH>..<HASH> 100644 --- a/lib/heroics/client_generator.rb +++ b/lib/heroics/client_generator.rb @@ -43,7 +43,7 @@ module Heroics default_headers: options.fetch(:default_headers, {}), cache: options.fetch(:cache, {}), ...
generate client with pretty-printed schema, mostly for saner diffs
diff --git a/components/icon/icon.test.js b/components/icon/icon.test.js index <HASH>..<HASH> 100644 --- a/components/icon/icon.test.js +++ b/components/icon/icon.test.js @@ -1,12 +1,11 @@ describe('Icon', function () { var $ = require('jquery'); - var React = require('react'); var TestUtils = require('react-ad...
Fix icons test examples after merge Former-commit-id: <I>b<I>e<I>ad<I>c<I>fbcce<I>dc<I>b
diff --git a/src/Wrep/Notificare/Apns/Certificate.php b/src/Wrep/Notificare/Apns/Certificate.php index <HASH>..<HASH> 100644 --- a/src/Wrep/Notificare/Apns/Certificate.php +++ b/src/Wrep/Notificare/Apns/Certificate.php @@ -38,7 +38,7 @@ class Certificate { // Check if the given PEM file does exists and expand the ...
Whoops, broke the build with a wonky certificate check.
diff --git a/api/server/version.go b/api/server/version.go index <HASH>..<HASH> 100644 --- a/api/server/version.go +++ b/api/server/version.go @@ -7,7 +7,7 @@ import ( ) // Version of IronFunctions -var Version = "0.1.49" +var Version = "0.1.50" func handleVersion(c *gin.Context) { c.JSON(http.StatusOK, gin.H{...
functions: <I> release [skip ci]
diff --git a/fermipy/diffuse/defaults.py b/fermipy/diffuse/defaults.py index <HASH>..<HASH> 100644 --- a/fermipy/diffuse/defaults.py +++ b/fermipy/diffuse/defaults.py @@ -16,7 +16,7 @@ diffuse = { 'hpx_order_ccube': (9, 'Maximum HEALPIX order for binning counts data.', int), 'hpx_order_expcube': (6, 'Maximum ...
Changed default for mktimefilter to None
diff --git a/src/test/java/org/springframework/retry/support/RetryTemplateBuilderTest.java b/src/test/java/org/springframework/retry/support/RetryTemplateBuilderTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/springframework/retry/support/RetryTemplateBuilderTest.java +++ b/src/test/java/org/springframewo...
Fix indents in the RetryTemplateBuilderTest
diff --git a/pyjoin/__init__.py b/pyjoin/__init__.py index <HASH>..<HASH> 100644 --- a/pyjoin/__init__.py +++ b/pyjoin/__init__.py @@ -148,3 +148,10 @@ def send_sms(api_key, sms_number, sms_text, device_id=None, device_ids=None, dev if device_names: req_url += "&deviceNames=" + device_names requests.get(req_u...
Update __init__.py Added a set_mediavolume() call to be able to set the volume of a device before sending it a TTS notification. Volume on my GSM is normally 0, so I want to be able to set it to 5 or <I>, then send a TTS notification and eventually set it back to 0.
diff --git a/datalad_service/handlers/draft.py b/datalad_service/handlers/draft.py index <HASH>..<HASH> 100644 --- a/datalad_service/handlers/draft.py +++ b/datalad_service/handlers/draft.py @@ -31,6 +31,8 @@ class DraftResource(object): 'files': None, 'name': name, 'email': email}) commit...
Add missing ref to commit_files reponse.
diff --git a/packages/react/src/components/DatePicker/DatePicker.js b/packages/react/src/components/DatePicker/DatePicker.js index <HASH>..<HASH> 100644 --- a/packages/react/src/components/DatePicker/DatePicker.js +++ b/packages/react/src/components/DatePicker/DatePicker.js @@ -329,6 +329,7 @@ export default class Date...
fix(Datepicker): add aria role to Flatpickr dialog (#<I>)
diff --git a/gridData/tests/test_ccp4.py b/gridData/tests/test_ccp4.py index <HASH>..<HASH> 100644 --- a/gridData/tests/test_ccp4.py +++ b/gridData/tests/test_ccp4.py @@ -60,7 +60,7 @@ def ccp4data(): ('nlabl', 1), ('label', ' Map from fft '), ...
better name for testing reading of CCP4 header
diff --git a/spec/support/http_library_adapters.rb b/spec/support/http_library_adapters.rb index <HASH>..<HASH> 100644 --- a/spec/support/http_library_adapters.rb +++ b/spec/support/http_library_adapters.rb @@ -86,11 +86,11 @@ HTTP_LIBRARY_ADAPTERS['curb'] = Module.new do def make_http_request(method, url, body = ni...
Fixed curb http adapter module so it supports all HTTP methods.
diff --git a/zipline/testing/predicates.py b/zipline/testing/predicates.py index <HASH>..<HASH> 100644 --- a/zipline/testing/predicates.py +++ b/zipline/testing/predicates.py @@ -100,6 +100,8 @@ def keywords(func): """ if isinstance(func, type): return keywords(func.__init__) + elif isinstance(fun...
BUG: Allow partials in assert_equal.
diff --git a/lib/synapse/service_watcher/docker.rb b/lib/synapse/service_watcher/docker.rb index <HASH>..<HASH> 100644 --- a/lib/synapse/service_watcher/docker.rb +++ b/lib/synapse/service_watcher/docker.rb @@ -35,7 +35,7 @@ module Synapse sleep_until_next_check(start) rescue => e - log.w...
docker watcher: follow log convention
diff --git a/QuickBooks/Encryption/Aes.php b/QuickBooks/Encryption/Aes.php index <HASH>..<HASH> 100755 --- a/QuickBooks/Encryption/Aes.php +++ b/QuickBooks/Encryption/Aes.php @@ -20,7 +20,7 @@ QuickBooks_Loader::load('/QuickBooks/Encryption.php'); /** * */ -class QuickBooks_Encryption_AES extends QuickBooks_Encry...
QuickBooks_Encryption_Aes instead of QuickBooks_Encryption_AES. Remainder of PR <URL>
diff --git a/code/macroeco/ssad.py b/code/macroeco/ssad.py index <HASH>..<HASH> 100644 --- a/code/macroeco/ssad.py +++ b/code/macroeco/ssad.py @@ -118,8 +118,13 @@ def nbd(n, N, a, k, summary = False): p = float(1) / (mu / float(k) + 1) # See Bolker book Chapt 4 pmf = scipy.stats.nbinom.pmf(n, k, p) - ...
Add catch to return nan if pmf has a zero in it
diff --git a/src/Layers/TiledMapLayer.js b/src/Layers/TiledMapLayer.js index <HASH>..<HASH> 100644 --- a/src/Layers/TiledMapLayer.js +++ b/src/Layers/TiledMapLayer.js @@ -42,7 +42,7 @@ export var TiledMapLayer = TileLayer.extend({ // set the urls options = getUrlParams(options); - this.tileUrl = options....
Tiledmaplayer proxy support (#<I>) * allow override of 'isModern' Add an option to let users decide to not use geoJSON, even if the underlying service supports it. Occasionally handy when ArcGIS Server has geoJSON geometry problems. * Add proxy support to tileUrl Make sure that tile requests use the proxy U...
diff --git a/Helper/Product.php b/Helper/Product.php index <HASH>..<HASH> 100644 --- a/Helper/Product.php +++ b/Helper/Product.php @@ -665,7 +665,7 @@ class Product extends AbstractHelper ); if (!$webShopPrice) { $webShopPrice = $price; - }elseif ($price > 0) { + ...
fix(code-style): missing spaces CDP-<I>
diff --git a/tests/Go/Instrument/Transformer/MagicConstantTransformerTest.php b/tests/Go/Instrument/Transformer/MagicConstantTransformerTest.php index <HASH>..<HASH> 100644 --- a/tests/Go/Instrument/Transformer/MagicConstantTransformerTest.php +++ b/tests/Go/Instrument/Transformer/MagicConstantTransformerTest.php @@ -5...
Added failing test for replacing magic strings in another strings
diff --git a/psycopg2_pgevents/event.py b/psycopg2_pgevents/event.py index <HASH>..<HASH> 100644 --- a/psycopg2_pgevents/event.py +++ b/psycopg2_pgevents/event.py @@ -11,7 +11,20 @@ from psycopg2.extensions import connection class Event: - """Represent a psycopg2-pgevents event.""" + """Represent a psycopg2-...
adds docstring to Event class
diff --git a/pushbullet_cli/app.py b/pushbullet_cli/app.py index <HASH>..<HASH> 100755 --- a/pushbullet_cli/app.py +++ b/pushbullet_cli/app.py @@ -1,16 +1,26 @@ #!/usr/bin/env python import argparse +import os import os.path import requests import re import sys +from contextlib import contextmanager PUSH_URL...
Key file should be created with private permissions
diff --git a/error.js b/error.js index <HASH>..<HASH> 100644 --- a/error.js +++ b/error.js @@ -42,6 +42,10 @@ class MongoError extends Error { static create(options) { return new MongoError(options); } + + hasErrorLabel(label) { + return this.errorLabels && this.errorLabels.indexOf(label) !== -1; + } }...
feat(error): all `hasErrorLabel` method to MongoError This improves readability in the transactions code when branching on error labels for certain retry scenarios.
diff --git a/scripts/generate_modules_docs.py b/scripts/generate_modules_docs.py index <HASH>..<HASH> 100644 --- a/scripts/generate_modules_docs.py +++ b/scripts/generate_modules_docs.py @@ -44,6 +44,7 @@ def build_facts(): and value.__module__ == module.__name__ and getattr(value, '_p...
Ignore modules starting with '_'.
diff --git a/src/Parser.php b/src/Parser.php index <HASH>..<HASH> 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -142,10 +142,6 @@ class Parser implements ParserInterface protected function parseValue($value, $key = null) { $value = trim($value); - if ('' === $value) { // implicit boolean...
move implicit boolean resolution from Parser to Dynamic type
diff --git a/raiden/network/transport/matrix/client.py b/raiden/network/transport/matrix/client.py index <HASH>..<HASH> 100644 --- a/raiden/network/transport/matrix/client.py +++ b/raiden/network/transport/matrix/client.py @@ -596,7 +596,8 @@ class GMatrixClient(MatrixClient): for event in sync_room["accou...
Don't call callback when there are no messages
diff --git a/src/GameQ/Protocols/Quake3.php b/src/GameQ/Protocols/Quake3.php index <HASH>..<HASH> 100644 --- a/src/GameQ/Protocols/Quake3.php +++ b/src/GameQ/Protocols/Quake3.php @@ -165,6 +165,9 @@ class Quake3 extends Protocol */ protected function processPlayers(Buffer $buffer) { + // Some gam...
Added clients count for Quake 3 protocol. Some games may not show current client count.
diff --git a/inquirer/questions.py b/inquirer/questions.py index <HASH>..<HASH> 100644 --- a/inquirer/questions.py +++ b/inquirer/questions.py @@ -254,6 +254,8 @@ class Path(Text): if current is None: raise errors.ValidationError(current) + current = self.normalize_value(current) + ...
Fixing validating Path's normalized value
diff --git a/src/utils/parse.js b/src/utils/parse.js index <HASH>..<HASH> 100644 --- a/src/utils/parse.js +++ b/src/utils/parse.js @@ -59,7 +59,6 @@ function sanitizeFunction(functionString) { } const func = Function(...params, match.groups.body || ''); - func.name = match.groups.name; func.displayN...
Don't set function.name because it's read-only.
diff --git a/test.js b/test.js index <HASH>..<HASH> 100644 --- a/test.js +++ b/test.js @@ -156,6 +156,10 @@ function consoleTestReport(results, allFailures) { msg = '✔ passed'; passedCnt += 1; } + } else if (test.result === 'ignore') { + formatter = f.ye...
Added showing ignored tests with deferred styling. Otherwise ignored tests (set with _should.ignore in TestCase definition) were marked as errors.
diff --git a/p2p/net/swarm/swarm_test.go b/p2p/net/swarm/swarm_test.go index <HASH>..<HASH> 100644 --- a/p2p/net/swarm/swarm_test.go +++ b/p2p/net/swarm/swarm_test.go @@ -102,12 +102,10 @@ func connectSwarms(t *testing.T, ctx context.Context, swarms []*Swarm) { } log.Info("Connecting swarms simultaneously.") - fo...
test: connect each peer precisely once. Otherwise, some tests will get confused by duplicate (temporary, we close duplicates quickly) connections. fixes libp2p/go-libp2p#<I>
diff --git a/Facades/Route.php b/Facades/Route.php index <HASH>..<HASH> 100755 --- a/Facades/Route.php +++ b/Facades/Route.php @@ -29,7 +29,7 @@ namespace Illuminate\Support\Facades; * @method static \Illuminate\Routing\Router|\Illuminate\Routing\RouteRegistrar group(\Closure|string|array $attributes, \Closure|string...
Allow Route::view() helper to set status and headers (#<I>)
diff --git a/core/src/main/java/net/kuujo/vertigo/util/serialization/SerializerFactory.java b/core/src/main/java/net/kuujo/vertigo/util/serialization/SerializerFactory.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/net/kuujo/vertigo/util/serialization/SerializerFactory.java +++ b/core/src/main/java/net/kuujo...
Use parent as serializable type.
diff --git a/lib/support/cli.js b/lib/support/cli.js index <HASH>..<HASH> 100644 --- a/lib/support/cli.js +++ b/lib/support/cli.js @@ -226,8 +226,8 @@ module.exports.parseCommandLine = function parseCommandLine() { }) .option('cpu', { type: 'boolean', - describe: 'Easy way to enable both chrome.ti...
Collect gecko profiler with --cpu (#<I>)
diff --git a/src/lib/KevinGH/Box/Command/Build.php b/src/lib/KevinGH/Box/Command/Build.php index <HASH>..<HASH> 100644 --- a/src/lib/KevinGH/Box/Command/Build.php +++ b/src/lib/KevinGH/Box/Command/Build.php @@ -429,6 +429,7 @@ HELP $this->putln('?', "Output path: $path"); $this->box = Box::create($p...
Speed-p build process Call the startBuffering method when building archive to speedup the phar building
diff --git a/sirmordred/_version.py b/sirmordred/_version.py index <HASH>..<HASH> 100644 --- a/sirmordred/_version.py +++ b/sirmordred/_version.py @@ -1,2 +1,2 @@ # Versions compliant with PEP 440 https://www.python.org/dev/peps/pep-0440 -__version__ = "0.1.30" +__version__ = "0.1.31"
[release] Update version number to <I>
diff --git a/src/Message/PxPostCreateCardRequest.php b/src/Message/PxPostCreateCardRequest.php index <HASH>..<HASH> 100644 --- a/src/Message/PxPostCreateCardRequest.php +++ b/src/Message/PxPostCreateCardRequest.php @@ -13,6 +13,7 @@ class PxPostCreateCardRequest extends PxPostAuthorizeRequest $this->getCard()-...
Add required currency for creating a credit card token Omitting the currency from the credit card token request fails if the currency defaults to the incorrect currency. In my case was defaulting to NZD and should be AUD. Specifying it clears up the issue.
diff --git a/plex/__init__.py b/plex/__init__.py index <HASH>..<HASH> 100644 --- a/plex/__init__.py +++ b/plex/__init__.py @@ -2,7 +2,7 @@ from plex.client import PlexClient from plex.lib.six import add_metaclass from plex.helpers import has_attribute -__version__ = '0.6.1' +__version__ = '0.6.2' class PlexMet...
Bumped version to <I>
diff --git a/lib/jade/index.js b/lib/jade/index.js index <HASH>..<HASH> 100644 --- a/lib/jade/index.js +++ b/lib/jade/index.js @@ -53,6 +53,14 @@ exports.doctypes = require('./doctypes'); exports.filters = require('./filters'); /** + * Utilities. + * + * @type Object + */ + +exports.utils = require('./utils'); + +...
Exporting utils for those who wish to write compilers
diff --git a/packages/neos-ui/src/Containers/RightSideBar/Inspector/TabPanel/index.js b/packages/neos-ui/src/Containers/RightSideBar/Inspector/TabPanel/index.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui/src/Containers/RightSideBar/Inspector/TabPanel/index.js +++ b/packages/neos-ui/src/Containers/RightSideBar/I...
BUGFIX: Hide empty groups in inspector
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -21,9 +21,9 @@ throw Error('f and g must be functions. f:' + f + ' g:' + g) } - return setProp('name', dot(f, g), function () { + return setProp('length', g.length, setProp('name', dot(f, g)...
[PATCH][FIX] set length of resulting function
diff --git a/annoying/decorators.py b/annoying/decorators.py index <HASH>..<HASH> 100644 --- a/annoying/decorators.py +++ b/annoying/decorators.py @@ -188,7 +188,7 @@ def ajax_request(func): else: format_type = 'application/json' response = func(request, *args, **kwargs) - if isins...
Why limit it to serialise lists/dicts? Try everything but HttpResponse subclasses
diff --git a/django_extensions/management/commands/reset_db.py b/django_extensions/management/commands/reset_db.py index <HASH>..<HASH> 100644 --- a/django_extensions/management/commands/reset_db.py +++ b/django_extensions/management/commands/reset_db.py @@ -92,7 +92,7 @@ Type 'yes' to continue, or 'no' to cancel: """ ...
reset_db made to work with spatialite (backend from geodjango)
diff --git a/src/atoms/Icon/constants.js b/src/atoms/Icon/constants.js index <HASH>..<HASH> 100644 --- a/src/atoms/Icon/constants.js +++ b/src/atoms/Icon/constants.js @@ -90,6 +90,7 @@ module.exports = { 'fastTrack', 'family', 'fastClock', + 'finalExpense', 'fineArt', 'fireExtinguisher', ...
Add new icons for Coverage Needs (#<I>)
diff --git a/src/browser/extension/background/index.js b/src/browser/extension/background/index.js index <HASH>..<HASH> 100644 --- a/src/browser/extension/background/index.js +++ b/src/browser/extension/background/index.js @@ -10,7 +10,5 @@ window.store = store; window.store.liftedStore.instances = {}; chrome.comma...
Keyboard shortcuts are now enabled even when store isn't initialized
diff --git a/pandas/tests/test_base.py b/pandas/tests/test_base.py index <HASH>..<HASH> 100644 --- a/pandas/tests/test_base.py +++ b/pandas/tests/test_base.py @@ -949,6 +949,21 @@ class TestIndexOps(Ops): s.drop_duplicates(inplace=True) tm.assert_series_equal(s, original) + def te...
TST: Same return values in drop_duplicates for Series and DataFrames(#<I>) (#<I>)
diff --git a/src/Intervention/Image/Image.php b/src/Intervention/Image/Image.php index <HASH>..<HASH> 100644 --- a/src/Intervention/Image/Image.php +++ b/src/Intervention/Image/Image.php @@ -1723,7 +1723,7 @@ class Image $saved = @file_put_contents($path, $this->encode(pathinfo($path, PATHINFO_EXTENSION), $qua...
added text to ImageNotWritableException
diff --git a/Joyst_Model.php b/Joyst_Model.php index <HASH>..<HASH> 100644 --- a/Joyst_Model.php +++ b/Joyst_Model.php @@ -291,8 +291,8 @@ class Joyst_Model extends CI_Model { if ( // Is read-only during a 'set' $operation == 'set' && - isset($this->schema[$key]['allowget']) && - !$this->schema[$key]['...
BUGFIX: Pretty major issue where allowget/allowset would get mixed up during a set operation
diff --git a/modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php b/modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php index <HASH>..<HASH> 100644 --- a/modules/social_features/social_core/src/Plugin/Block/SocialPageTitleBlock.php +++ b/modules/social_features/social_...
DS-<I> by bramtenhove: Fix testing typo
diff --git a/django_extensions/management/commands/sqldiff.py b/django_extensions/management/commands/sqldiff.py index <HASH>..<HASH> 100644 --- a/django_extensions/management/commands/sqldiff.py +++ b/django_extensions/management/commands/sqldiff.py @@ -49,15 +49,16 @@ def flatten(l, ltypes=(list, tuple)): def all_...
Not managed models should not return fields Fixes previous commit where non-managed models were returning fields.
diff --git a/src/Grid/Filter/AbstractFilter.php b/src/Grid/Filter/AbstractFilter.php index <HASH>..<HASH> 100644 --- a/src/Grid/Filter/AbstractFilter.php +++ b/src/Grid/Filter/AbstractFilter.php @@ -248,7 +248,7 @@ abstract class AbstractFilter } /** - * @param array $options + * @param array|\Illum...
multipleSeletct/... methods support collection
diff --git a/src/main/java/com/bladecoder/ink/runtime/Story.java b/src/main/java/com/bladecoder/ink/runtime/Story.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/bladecoder/ink/runtime/Story.java +++ b/src/main/java/com/bladecoder/ink/runtime/Story.java @@ -1202,6 +1202,9 @@ public class Story extends RTObject...
Ref. C#: -> DONE should stop flow in the current thread.
diff --git a/routing/router_test.go b/routing/router_test.go index <HASH>..<HASH> 100644 --- a/routing/router_test.go +++ b/routing/router_test.go @@ -421,9 +421,10 @@ func TestChannelUpdateValidation(t *testing.T) { }, } - route := &Route{ - Hops: hops, - } + route := NewRouteFromHops( + lnwire.MilliSatoshi(1...
routing: use complete route in test Previously not all route fields were properly populated. Example: prev and next hop maps.
diff --git a/bcbio/variation/vardict.py b/bcbio/variation/vardict.py index <HASH>..<HASH> 100644 --- a/bcbio/variation/vardict.py +++ b/bcbio/variation/vardict.py @@ -47,6 +47,9 @@ def _vardict_options_from_config(items, config, out_file, target=None): ((vardict_cl == "vardict-java" and LooseVersion(version) >...
VarDictJava: exclude SVs starting before start region This avoids duplicate SVs present at the end of one region and before the start of the next
diff --git a/pandas/tests/test_frame.py b/pandas/tests/test_frame.py index <HASH>..<HASH> 100644 --- a/pandas/tests/test_frame.py +++ b/pandas/tests/test_frame.py @@ -7678,7 +7678,7 @@ class TestDataFrame(unittest.TestCase, CheckIndexing, def test_mask_edge_case_1xN_frame(self): # GH4071 df = Dat...
TST: use DataFrame in the test
diff --git a/openquake/risklib/asset.py b/openquake/risklib/asset.py index <HASH>..<HASH> 100644 --- a/openquake/risklib/asset.py +++ b/openquake/risklib/asset.py @@ -253,7 +253,7 @@ aids_dt = numpy.dtype([('aids', hdf5.vuint32)]) class AssetCollection(object): - # the information about the assets is store in a...
Updated a comment [skip CI]
diff --git a/test/traverse_spec.js b/test/traverse_spec.js index <HASH>..<HASH> 100644 --- a/test/traverse_spec.js +++ b/test/traverse_spec.js @@ -4,8 +4,19 @@ const expect = require('chai').expect; describe('findAll', () => { it('retrieves a collection of kernel specs', () => { - return findAll().then(dirs =>...
Problem: findAll's test wasn't very robust Solution: Check more properties
diff --git a/test/test_motor_client.py b/test/test_motor_client.py index <HASH>..<HASH> 100644 --- a/test/test_motor_client.py +++ b/test/test_motor_client.py @@ -170,6 +170,7 @@ class MotorClientTest(MotorTest): collection = cx.motor_test.test_collection insert_collection = cx.motor_test.insert_col...
More reliable test_high_concurrency.
diff --git a/robobrowser/browser.py b/robobrowser/browser.py index <HASH>..<HASH> 100644 --- a/robobrowser/browser.py +++ b/robobrowser/browser.py @@ -337,7 +337,7 @@ class RoboBrowser(object): # Send request url = self._build_url(form.action) or self.url form_data = form.serialize() - ...
fix issue with building bad POST requests
diff --git a/tools/functional-tester/etcd-tester/lease_stresser.go b/tools/functional-tester/etcd-tester/lease_stresser.go index <HASH>..<HASH> 100644 --- a/tools/functional-tester/etcd-tester/lease_stresser.go +++ b/tools/functional-tester/etcd-tester/lease_stresser.go @@ -114,7 +114,7 @@ func (ls *leaseStresser) setu...
etcd-tester:limit max retry backoff delay grpc uses expoential retry if a connection is lost. grpc will sleep base on exponential delay. if delay is too large, it slows down tester.
diff --git a/l/cli.py b/l/cli.py index <HASH>..<HASH> 100644 --- a/l/cli.py +++ b/l/cli.py @@ -120,7 +120,6 @@ I_hate_everything = [ click.option( "--no-group-directories-first", "sort_by", flag_value=lambda thing : thing, - default=True, help="Show content in alphabetical order r...
Remove the default to allow run to decide what to use.
diff --git a/superset/views/core.py b/superset/views/core.py index <HASH>..<HASH> 100755 --- a/superset/views/core.py +++ b/superset/views/core.py @@ -33,7 +33,7 @@ from flask_appbuilder.security.decorators import has_access, has_access_api from flask_appbuilder.security.sqla import models as ab_models from flask_bab...
chore: Leverage SQLALchemy ping rather than explicit SELECT 1 for testconn (#<I>)
diff --git a/HashCacheClient.js b/HashCacheClient.js index <HASH>..<HASH> 100644 --- a/HashCacheClient.js +++ b/HashCacheClient.js @@ -54,6 +54,7 @@ class HashCacheClient { request .delete(this.host + '/channel/' + hash) .set('Authorization', this.credentials) + .send({ password: passwor...
Fix missing password for channel deletion in HashCacheClient
diff --git a/src/Model.php b/src/Model.php index <HASH>..<HASH> 100644 --- a/src/Model.php +++ b/src/Model.php @@ -467,7 +467,7 @@ abstract class Model extends PhalconModel $params['order'] = $orderBy; } if ($columns) { - $params['columns'] = is_array($columns) ? explode(',', $...
fix(Model): implode an array.
diff --git a/src/MageTest/PhpSpec/MagentoExtension/Autoloader/MageLoader.php b/src/MageTest/PhpSpec/MagentoExtension/Autoloader/MageLoader.php index <HASH>..<HASH> 100644 --- a/src/MageTest/PhpSpec/MagentoExtension/Autoloader/MageLoader.php +++ b/src/MageTest/PhpSpec/MagentoExtension/Autoloader/MageLoader.php @@ -189,6...
Add file exists test to prevent warning Add a test for the file existing ahead of the include_one. Without the tests the warning thrown would prevent the user from being prompted to create the file and the spec functionality is blocked.
diff --git a/telethon/events/inlinequery.py b/telethon/events/inlinequery.py index <HASH>..<HASH> 100644 --- a/telethon/events/inlinequery.py +++ b/telethon/events/inlinequery.py @@ -178,11 +178,17 @@ class InlineQuery(EventBuilder): return if results: - results = [self._a...
Fix order of inline results not being preserved
diff --git a/test/unittests/test_record.py b/test/unittests/test_record.py index <HASH>..<HASH> 100644 --- a/test/unittests/test_record.py +++ b/test/unittests/test_record.py @@ -21,6 +21,7 @@ EXPECTED_RECORD_ATTRIBUTES = { 'values' } + @given(attributes) def test_empty_constructor_has_no_attributes(attr): ...
Fixed pep8 blip.
diff --git a/bosh_aws_bootstrap/lib/bosh/cli/commands/aws.rb b/bosh_aws_bootstrap/lib/bosh/cli/commands/aws.rb index <HASH>..<HASH> 100644 --- a/bosh_aws_bootstrap/lib/bosh/cli/commands/aws.rb +++ b/bosh_aws_bootstrap/lib/bosh/cli/commands/aws.rb @@ -90,8 +90,13 @@ module Bosh::Cli::Command usage "aws create" ...
AWS create --trace option to print all HTTP traffic with AWS
diff --git a/src/Table.php b/src/Table.php index <HASH>..<HASH> 100644 --- a/src/Table.php +++ b/src/Table.php @@ -232,7 +232,7 @@ class Table implements TableInterface */ public function get(string $key, $field = null) { - return $this->table->get($key, $field); + return $field ? $this->t...
Update Table.php Fix bug when pass null value as $filed will return false
diff --git a/lnwallet/reservation.go b/lnwallet/reservation.go index <HASH>..<HASH> 100644 --- a/lnwallet/reservation.go +++ b/lnwallet/reservation.go @@ -276,16 +276,6 @@ func (r *ChannelReservation) SetNumConfsRequired(numConfs uint16) { r.partialState.NumConfsRequired = numConfs } -// RegisterMinHTLC registers ...
lnwallet/reservation: remove RegisterMinHTLC We remove this method, as our minHtlc value is set using the CommitConstraints method.
diff --git a/lib/access-granted/controller_methods.rb b/lib/access-granted/controller_methods.rb index <HASH>..<HASH> 100644 --- a/lib/access-granted/controller_methods.rb +++ b/lib/access-granted/controller_methods.rb @@ -5,7 +5,7 @@ module AccessGranted end def self.included(base) - base.helper_metho...
Rename incorrect current_ability to current_policy.
diff --git a/wp-cli.php b/wp-cli.php index <HASH>..<HASH> 100755 --- a/wp-cli.php +++ b/wp-cli.php @@ -50,6 +50,14 @@ foreach (glob(WP_CLI_ROOT.'/commands/community/*.php') as $filename) { include $filename; } +// Check if there are commands installed +if(empty(WP_CLI::$commands)) { + WP_CLI::error('No commands i...
check if there are any commands before doing anything with the args
diff --git a/src/ModelSearch.php b/src/ModelSearch.php index <HASH>..<HASH> 100755 --- a/src/ModelSearch.php +++ b/src/ModelSearch.php @@ -520,6 +520,8 @@ class ModelSearch // Review each request. foreach ($this->request as $name => $filters) { + $name = str_replace('-', '.', $name); + ...
Convert parameter names into dot-notation (. in url converts to underscore which is harder to detect)
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -9,7 +9,7 @@ function addModifier(baseClass, modifier) { function getClassArray(block, element, modifiers = []) { const baseClass = getBaseClass(block, element); const modifierFn = addModifier.bind(null,...
fix(modifiers): disallow empty modifiers Ignore values such as `null` and empty strings when generating modifier classes.
diff --git a/grimoire/elk/gerrit.py b/grimoire/elk/gerrit.py index <HASH>..<HASH> 100644 --- a/grimoire/elk/gerrit.py +++ b/grimoire/elk/gerrit.py @@ -221,7 +221,7 @@ class GerritEnrich(Enrich): eitem = {} # Item enriched # Fields that are the same in item and eitem - copy_fields = ["status"...
[gerrit enrich] Include the number of gerrit review.
diff --git a/src/main/java/com/couchbase/cblite/replicator/CBLReplicator.java b/src/main/java/com/couchbase/cblite/replicator/CBLReplicator.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/couchbase/cblite/replicator/CBLReplicator.java +++ b/src/main/java/com/couchbase/cblite/replicator/CBLReplicator.java @@ -3...
Re-do another fix for issue #<I> since the first one caused major issues.
diff --git a/tinman/handlers/rabbitmq.py b/tinman/handlers/rabbitmq.py index <HASH>..<HASH> 100644 --- a/tinman/handlers/rabbitmq.py +++ b/tinman/handlers/rabbitmq.py @@ -11,6 +11,7 @@ Example configuration: password: tornado """ +from tornado import gen import logging import pika from pika.adapters impo...
Make sure prepare is async
diff --git a/thjs.js b/thjs.js index <HASH>..<HASH> 100644 --- a/thjs.js +++ b/thjs.js @@ -520,8 +520,13 @@ function receive(msg, path) var from = self.whois(local.der2hn(open.rsa)); if (!from) return warn("invalid hashname", local.der2hn(open.rsa), open.rsa); - // make sure this open is newer (if any ot...
fix a timing issue after open, and improve open logic
diff --git a/wandb/integration/tensorboard/log.py b/wandb/integration/tensorboard/log.py index <HASH>..<HASH> 100644 --- a/wandb/integration/tensorboard/log.py +++ b/wandb/integration/tensorboard/log.py @@ -83,7 +83,14 @@ def tf_summary_to_dict(tf_summary_str_or_pb, namespace=""): # noqa: C901 return None ...
[WB-<I>] Check if pillow is installed before importing (#<I>) * Check if pillow is installed before importing * Skip the image encoding if pillow isn't installed instead of exiting out of the whole run.
diff --git a/src/nwmatcher.js b/src/nwmatcher.js index <HASH>..<HASH> 100644 --- a/src/nwmatcher.js +++ b/src/nwmatcher.js @@ -180,18 +180,15 @@ NW.Dom = (function(global) { // tests are based on the jQuery selector test suite BUGGY_GEBCN = NATIVE_GEBCN ? (function() { - var isBuggy, - div = cont...
fixed GEBCN feature test to use a string instead of a regular expression, formatting changes
diff --git a/lib/puavo/client/hash_mixin/device_base.rb b/lib/puavo/client/hash_mixin/device_base.rb index <HASH>..<HASH> 100644 --- a/lib/puavo/client/hash_mixin/device_base.rb +++ b/lib/puavo/client/hash_mixin/device_base.rb @@ -4,6 +4,11 @@ module Puavo module DeviceBase include Base + def b...
Fix boolean handling for xrandr_disable.
diff --git a/test/unexpectedAssetGraph.js b/test/unexpectedAssetGraph.js index <HASH>..<HASH> 100644 --- a/test/unexpectedAssetGraph.js +++ b/test/unexpectedAssetGraph.js @@ -73,7 +73,13 @@ module.exports = { } else if (typeof number === 'undefined') { number = 1; } - ...
Test, to contain {asset,relation}(s): Provide the found asset(s) as the fulfillment value of the assertion
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 @@ -61,9 +61,9 @@ module SpecHelpers "#{RUN_ID}-topic-#{SecureRandom.uuid}" end - def create_random_topic(*args) + def create_random_topic(**args) topic = generate_topi...
Resolve "Passing the keyword argument as ..." deprecation warning
diff --git a/src/Provider/AssetServiceProvider.php b/src/Provider/AssetServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Provider/AssetServiceProvider.php +++ b/src/Provider/AssetServiceProvider.php @@ -34,11 +34,12 @@ class AssetServiceProvider implements ServiceProviderInterface $app['asset.file.ha...
Only return a hash if the file can be found
diff --git a/container.php b/container.php index <HASH>..<HASH> 100644 --- a/container.php +++ b/container.php @@ -159,7 +159,7 @@ class Metrodi_Container { $loaded = FALSE; foreach ($this->searchDirs as $_dir) { if(file_exists($_dir.$filesep.$file)) { - if(include_once($file)) { + if(include_once($_dir...
Fix loading file bug. Missing directory path, but still passed unit tests.
diff --git a/lib/src/controller.php b/lib/src/controller.php index <HASH>..<HASH> 100644 --- a/lib/src/controller.php +++ b/lib/src/controller.php @@ -400,7 +400,7 @@ class Trails_Controller { * @return object a response object */ function rescue($exception) { - return ($this->response = $this->dispat...
Controller#rescue does not have to set response