mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
format
This commit is contained in:
parent
4dbe5eabe9
commit
7e3d9f8f2b
2 changed files with 5 additions and 3 deletions
|
@ -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] }"
|
||||
);
|
||||
});
|
||||
|
|
|
@ -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="
|
||||
])
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue