diff options
author | Felix Yan <felixonmars@archlinux.org> | 2018-05-31 18:38:40 +0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-31 15:57:43 +0200 |
commit | 8edb3390c2a6fcfb906b6e9c2e04eec7d1acf95d (patch) | |
tree | ffbef89d0093305c36eae1f7ea63a61eddbae315 | |
parent | e3926720118f76e4b1352a75e332026e49154f34 (diff) |
Fix a typo in integration_test.go
-rw-r--r-- | integration_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_test.go b/integration_test.go index 5f6ab3ea6..95452b049 100644 --- a/integration_test.go +++ b/integration_test.go @@ -127,7 +127,7 @@ func TestIntegrationUrlArgs(t *testing.T) { if err == nil { t.Fatalf("Expected 404. %s", err.Error()) } - // Check that cache dir is emtpy. + // Check that cache dir is empty. cacheFn = path.Join(cachedir, "src/localhost:4546/testdata/001_hello.js") println("bad cacheFn", cacheFn) if exists(cacheFn) { |