Skip to content

Commit 0b7cc3d

Browse files
fix tests+build
1 parent ce88358 commit 0b7cc3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/server/smb/server_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ func TestGetRootMappingPath(t *testing.T) {
153153
if err != nil {
154154
t.Errorf("Expected no errors but getRootMappingPath returned error: %v", err)
155155
}
156-
if expectResult != result {
157-
t.Errorf("Expected (%s) but getRootMappingPath returned (%s)", expectResult, result)
156+
if tc.expectResult != result {
157+
t.Errorf("Expected (%s) but getRootMappingPath returned (%s)", tc.expectResult, result)
158158
}
159159
}
160160
}

0 commit comments

Comments
 (0)