diff options
author | Luka Hartwig <mail@lukahartwig.de> | 2020-02-02 22:55:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-02 16:55:22 -0500 |
commit | f168597b7ab81afda3bf4749a81c360d364e7cf1 (patch) | |
tree | 4082e9eebf03cc7b3b653822c52a54a62e308d15 /core/js_errors.rs | |
parent | e8df66c12cbb3e51f8776aa91e6db41bbfdcae5e (diff) |
Remove //tests symlink (#3849)
Diffstat (limited to 'core/js_errors.rs')
-rw-r--r-- | core/js_errors.rs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/js_errors.rs b/core/js_errors.rs index 0b77945a6..6cb86f724 100644 --- a/core/js_errors.rs +++ b/core/js_errors.rs @@ -306,7 +306,7 @@ mod tests { "line":2, "column":11, "functionName":"foo", - "scriptName":"/Users/rld/src/deno/tests/error_001.ts", + "scriptName":"/Users/rld/src/deno/cli/tests/error_001.ts", "isEval":true, "isConstructor":false, "isWasm":false @@ -319,7 +319,7 @@ mod tests { Some(StackFrame { line: 1, column: 10, - script_name: "/Users/rld/src/deno/tests/error_001.ts".to_string(), + script_name: "/Users/rld/src/deno/cli/tests/error_001.ts".to_string(), function_name: "foo".to_string(), is_eval: true, is_constructor: false, @@ -332,7 +332,7 @@ mod tests { fn stack_frame_from_json_value_2() { let v = serde_json::from_str::<serde_json::Value>( r#"{ - "scriptName": "/Users/rld/src/deno/tests/error_001.ts", + "scriptName": "/Users/rld/src/deno/cli/tests/error_001.ts", "line": 2, "column": 11 }"#, @@ -343,7 +343,7 @@ mod tests { let f = r.unwrap(); assert_eq!(f.line, 1); assert_eq!(f.column, 10); - assert_eq!(f.script_name, "/Users/rld/src/deno/tests/error_001.ts"); + assert_eq!(f.script_name, "/Users/rld/src/deno/cli/tests/error_001.ts"); } #[test] @@ -356,7 +356,7 @@ mod tests { "line":2, "column":11, "functionName":"foo", - "scriptName":"/Users/rld/src/deno/tests/error_001.ts", + "scriptName":"/Users/rld/src/deno/cli/tests/error_001.ts", "isEval":true, "isConstructor":false, "isWasm":false @@ -364,7 +364,7 @@ mod tests { "line":5, "column":5, "functionName":"bar", - "scriptName":"/Users/rld/src/deno/tests/error_001.ts", + "scriptName":"/Users/rld/src/deno/cli/tests/error_001.ts", "isEval":true, "isConstructor":false, "isWasm":false @@ -380,7 +380,7 @@ mod tests { StackFrame { line: 1, column: 10, - script_name: "/Users/rld/src/deno/tests/error_001.ts".to_string(), + script_name: "/Users/rld/src/deno/cli/tests/error_001.ts".to_string(), function_name: "foo".to_string(), is_eval: true, is_constructor: false, |