Skip to content

Commit 799cb1f

Browse files
committed
hash sys on windows is empty
1 parent 3c8cad0 commit 799cb1f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/TestHash.m

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ function test_hash_empty(tc, Pe, backend)
5959
tc.verifyClass(r, 'char')
6060

6161
if ismember(backend, stdlib.Backend().select('file_checksum'))
62-
tc.verifyEqual(r, Pe{2})
62+
if ispc() && backend == "sys"
63+
tc.verifyEmpty(r)
64+
else
65+
tc.verifyEqual(r, Pe{2})
66+
end
6367
else
6468
tc.assertEmpty(r)
6569
end

0 commit comments

Comments
 (0)