Skip to content

Commit 2bbc0d1

Browse files
author
abeaucha
committed
s3 paths now treated as absolute (unittest update)
1 parent 224558a commit 2bbc0d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/c++/sys/unittests/test_path.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ TEST_CASE(test_std_filesystem_is_absolute)
122122
#endif
123123

124124
url = "s3://example.com"; // 2 letters
125-
TEST_ASSERT_FALSE(url.is_absolute());
126-
TEST_ASSERT_TRUE(url.is_relative()); // Should this be false?
125+
TEST_ASSERT_TRUE(url.is_absolute());
126+
TEST_ASSERT_FALSE(url.is_relative());
127127

128128
url = "ftp://example.com"; // 3 letters
129129
TEST_ASSERT_FALSE(url.is_absolute());

0 commit comments

Comments
 (0)