mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
chore(test): fix tag for array tests
This commit is contained in:
parent
787618142c
commit
95fed153cd
1 changed files with 3 additions and 3 deletions
|
|
@ -2,7 +2,7 @@
|
|||
#include "storm/String.hpp"
|
||||
#include "test/Test.hpp"
|
||||
|
||||
TEST_CASE("TSBaseArray", "[list]") {
|
||||
TEST_CASE("TSBaseArray", "[array]") {
|
||||
SECTION("constructs correctly") {
|
||||
TSBaseArray<uint32_t> array;
|
||||
REQUIRE(array.Count() == 0);
|
||||
|
|
@ -16,14 +16,14 @@ TEST_CASE("TSBaseArray::MemFileName", "[array]") {
|
|||
}
|
||||
}
|
||||
|
||||
TEST_CASE("TSFixedArray", "[list]") {
|
||||
TEST_CASE("TSFixedArray", "[array]") {
|
||||
SECTION("constructs correctly") {
|
||||
TSFixedArray<uint32_t> array;
|
||||
REQUIRE(array.Count() == 0);
|
||||
}
|
||||
}
|
||||
|
||||
TEST_CASE("TSGrowableArray", "[list]") {
|
||||
TEST_CASE("TSGrowableArray", "[array]") {
|
||||
SECTION("constructs correctly") {
|
||||
TSGrowableArray<uint32_t> array;
|
||||
REQUIRE(array.Count() == 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue