We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3248f01 commit 184166bCopy full SHA for 184166b
test/TestBackend.m
@@ -94,7 +94,12 @@ function test_backend(tc)
94
95
[i, b] = stdlib.is_dev_drive('.');
96
tc.assertThat(b, IsSubsetOf(stdlib.Backend('is_dev_drive').backends))
97
-tc.verifyNotEmpty(i)
+if ~ispc() || stdlib.is_admin()
98
+ tc.verifyNotEmpty(i)
99
+else
100
+ tc.verifyEmpty(i)
101
+end
102
+
103
104
[i, b] = stdlib.is_mount('.');
105
tc.assertThat(b, IsSubsetOf(stdlib.Backend('is_mount').backends))
0 commit comments