diff options
Diffstat (limited to 'cli/compilers')
-rw-r--r-- | cli/compilers/ts.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/compilers/ts.rs b/cli/compilers/ts.rs index b95a811e7..532791cd0 100644 --- a/cli/compilers/ts.rs +++ b/cli/compilers/ts.rs @@ -712,7 +712,7 @@ mod tests { .unwrap() .code .as_bytes() - .starts_with("console.log(\"Hello World\");".as_bytes())); + .starts_with(b"console.log(\"Hello World\");")); }; tokio_util::run(fut.boxed()) |