Skip to content

Commit

Permalink
Ensure unique test filenames.
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed Nov 15, 2023
1 parent 88fcc89 commit 7efa63b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/tests_high_five_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3143,12 +3143,12 @@ TEST_CASE("HighFiveSTDString (attribute, multiple, short)") {
}

TEST_CASE("HighFiveSTDString (dataset, multiple, long)") {
File file("std_string_dataset_multiple_short.h5", File::Truncate);
File file("std_string_dataset_multiple_long.h5", File::Truncate);
check_multiple_string(ForwardToDataSet(file), 256);
}

TEST_CASE("HighFiveSTDString (attribute, multiple, long)") {
File file("std_string_attribute_multiple_short.h5", File::Truncate);
File file("std_string_attribute_multiple_long.h5", File::Truncate);
check_multiple_string(ForwardToAttribute(file), 256);
}

Expand Down

0 comments on commit 7efa63b

Please sign in to comment.