Skip to content

Commit

Permalink
Ensure unique test filenames. (#849)
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc authored Nov 16, 2023
1 parent 13396c5 commit 0bf1f83
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 0bf1f83

Please sign in to comment.