Skip to content

Commit 9658ec2

Browse files
committed
Fixing incorrect VERIFY macro check in test read_one_byte_at_4G
1 parent 3025d90 commit 9658ec2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Release/tests/Functional/streams/fstreambuf_tests.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -946,8 +946,7 @@ TEST(read_one_byte_at_4G)
946946
string_t filename = U("read_one_byte_at_4G.txt");
947947
// create a sparse file with sparse file apis
948948
auto handle = CreateSparseFile(filename.c_str());
949-
950-
VERIFY_ARE_EQUAL(handle, INVALID_HANDLE_VALUE);
949+
VERIFY_ARE_NOT_EQUAL(handle, INVALID_HANDLE_VALUE);
951950

952951
// write 1 byte
953952
auto data = 'a';

0 commit comments

Comments
 (0)