diff options
author | Bert Belder <bertbelder@gmail.com> | 2018-08-28 02:00:54 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2018-08-28 02:01:41 +0200 |
commit | 7e3d9f8f2bef650f4ed37fa17c68a5afc4be7146 (patch) | |
tree | e943512babcba148027482de80e71f69b0bc6eec | |
parent | 4dbe5eabe971cbcb1f32292f6a8b5cfb7c02186b (diff) |
format
-rw-r--r-- | js/console_test.ts | 5 | ||||
-rwxr-xr-x | tools/setup.py | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/js/console_test.ts b/js/console_test.ts index d38974c66..01345825d 100644 --- a/js/console_test.ts +++ b/js/console_test.ts @@ -78,5 +78,8 @@ test(function consoleTestStringifyCircular() { assertEqual(stringify(function f() {}), "[Function: f]"); assertEqual(stringify(nestedObj), nestedObjExpected); assertEqual(stringify(JSON), "{}"); - assertEqual(stringify(console), "Console { printFunc: [Function], debug: [Function: log], info: [Function: log], error: [Function: warn] }"); + assertEqual( + stringify(console), + "Console { printFunc: [Function], debug: [Function: log], info: [Function: log], error: [Function: warn] }" + ); }); diff --git a/tools/setup.py b/tools/setup.py index cbc85bd16..85e49d3c7 100755 --- a/tools/setup.py +++ b/tools/setup.py @@ -28,8 +28,7 @@ def main(): def write_lastchange(): run([ sys.executable, "build/util/lastchange.py", "-o", - "build/util/LASTCHANGE", "--source-dir", root_path, - "--filter=" + "build/util/LASTCHANGE", "--source-dir", root_path, "--filter=" ]) |