Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Aug 28, 2018
1 parent 4dbe5ea commit 7e3d9f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion js/console_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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] }"
);
});
3 changes: 1 addition & 2 deletions tools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="
])


Expand Down

0 comments on commit 7e3d9f8

Please sign in to comment.