summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorArne Juul <arnej@yahooinc.com>2022-11-04 07:43:47 +0000
committerArne Juul <arnej@yahooinc.com>2022-11-04 07:43:47 +0000
commit6e21880c1361008867f5fa7ffb6dd3bf2d599611 (patch)
tree3d40d147fc827716ca7200820868f631b25e68f4 /client
parent27bc4f0aa9bd59f33ebbfae94cbe4ac8bd8bf6f5 (diff)
ensure expected exception even when running as super-user
Diffstat (limited to 'client')
-rw-r--r--client/go/util/fix_fs_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/util/fix_fs_test.go b/client/go/util/fix_fs_test.go
index 637aab59e9a..8696359ea19 100644
--- a/client/go/util/fix_fs_test.go
+++ b/client/go/util/fix_fs_test.go
@@ -129,7 +129,7 @@ func TestFailedFixdir(t *testing.T) {
tmpDir := setup(t)
spec := NewFixSpec()
defer expectSimplePanic()
- spec.FixDir(tmpDir + "/a/bad/subdir")
+ spec.FixDir(tmpDir + "/a/f1")
assert.Equal(t, "", "should not be reached")
}