From 0b9ab1249b4bc0a7ab34ee68ca9ea71d7cd7d2ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 21 Dec 2018 19:02:52 +0100 Subject: Remove default export from flags module (denoland/deno_std#38) Original: https://github.com/denoland/deno_std/commit/e674f7575a7a5a845d696416da2abae62525bc3e --- flags/tests/stop_early.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'flags/tests/stop_early.ts') diff --git a/flags/tests/stop_early.ts b/flags/tests/stop_early.ts index 2a62008b7..a47c9bd4a 100755 --- a/flags/tests/stop_early.ts +++ b/flags/tests/stop_early.ts @@ -1,9 +1,9 @@ import { test, assertEqual } from "https://deno.land/x/testing/testing.ts"; -import parseArgs from "../index.ts"; +import { parse } from "../index.ts"; // stops parsing on the first non-option when stopEarly is set test(function stopParsing() { - const argv = parseArgs(['--aaa', 'bbb', 'ccc', '--ddd'], { + const argv = parse(['--aaa', 'bbb', 'ccc', '--ddd'], { stopEarly: true }); -- cgit v1.2.3