summaryrefslogtreecommitdiff
path: root/integration_test.go
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-30 17:22:29 +0200
committerRyan Dahl <ry@tinyclouds.org>2018-05-30 17:22:32 +0200
commite401d9e21bd3803d7d329ed8b7c831127f12832f (patch)
treefb50cba08375ddad15e5a8c509cd92ec5fe9b54b /integration_test.go
parent4319a0e681b0236be7ba22c19769e10886e9f892 (diff)
Fix allow-net flag in integration_test.
Test should have failed in 98be59 but didn't. That needs to be investigated.
Diffstat (limited to 'integration_test.go')
-rw-r--r--integration_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_test.go b/integration_test.go
index 9f780f0fd..5f6ab3ea6 100644
--- a/integration_test.go
+++ b/integration_test.go
@@ -138,7 +138,7 @@ func TestIntegrationUrlArgs(t *testing.T) {
func TestTestsTs(t *testing.T) {
integrationTestSetup()
// TODO Need unit test for each of the permissions.
- cmd := exec.Command(denoFn, "--allow-connect", "--allow-write", "tests.ts")
+ cmd := exec.Command(denoFn, "--allow-net", "--allow-write", "tests.ts")
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err := cmd.Run()