diff options
| author | Yoshiya Hinosawa <stibium121@gmail.com> | 2019-03-12 14:51:51 +0900 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-12 01:51:51 -0400 |
| commit | f124e645263099132025256df8594ca0dc5cc83a (patch) | |
| tree | 07f0f99b99e55f431f71f4463aa912ab96405f61 /flags/tests/parse.ts | |
| parent | 4a97a6e67e93cdbcecde3d9b99092f15d3dfd803 (diff) | |
fix: eslint errors (denoland/deno_std#265)
Original: https://github.com/denoland/deno_std/commit/61af419bbc5717c2e2552050aacb20ef1b17480b
Diffstat (limited to 'flags/tests/parse.ts')
| -rwxr-xr-x | flags/tests/parse.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flags/tests/parse.ts b/flags/tests/parse.ts index 73bdb7c3b..a37cd4c63 100755 --- a/flags/tests/parse.ts +++ b/flags/tests/parse.ts @@ -178,7 +178,7 @@ test(function nestedDottedObjects() { "4", "--foo.quux.quibble", "5", - "--foo.quux.o_O", + "--foo.quux.oO", "--beep.boop" ]); @@ -187,7 +187,7 @@ test(function nestedDottedObjects() { baz: 4, quux: { quibble: 5, - o_O: true + oO: true } }); assertEquals(argv.beep, { boop: true }); |
