diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-28 12:22:02 -0400 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-28 12:22:02 -0400 |
| commit | 844f565cc053b188473a209e8642772ad42b43bd (patch) | |
| tree | bbdc0e34fd6bfa9d6db3cec6f2d46c6e0c8b32b9 | |
| parent | 659f7b043318775f4f5ea7419082ff7f411963ff (diff) | |
Fix TestResolveModule4
| -rw-r--r-- | os_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os_test.go b/os_test.go index 7fefcad8c..0d1f39171 100644 --- a/os_test.go +++ b/os_test.go @@ -67,7 +67,7 @@ func TestResolveModule4(t *testing.T) { AssertEqual(t, moduleName, "http://unpkg.com/liltest@0.0.5/index.ts") AssertEqual(t, filename, - "/Users/rld/.deno/src/unpkg.com/liltest@0.0.5/index.ts") + path.Join(SrcDir, "unpkg.com/liltest@0.0.5/index.ts")) } func TestResolveModule5(t *testing.T) { |
