Skip to content

Commit bab2116

Browse files
committed
Integration tests: Remove redundant "array" from std_array.toml test names
1 parent f7c79c9 commit bab2116

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/integration/std_array.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
includes = ["array", "cstdint", "vector"]
22
[cases]
3-
[cases.array_uint64_length_0]
3+
[cases.uint64_length_0]
44
param_types = ["std::array<std::uint64_t, 0>&"]
55
setup = "return {{}};"
66
expect_json = '''
@@ -15,7 +15,7 @@ includes = ["array", "cstdint", "vector"]
1515
}
1616
]
1717
'''
18-
[cases.array_uint64_length_1]
18+
[cases.uint64_length_1]
1919
param_types = ["std::array<std::uint64_t, 1>&"]
2020
setup = "return {{1}};"
2121
expect_json = '''
@@ -30,7 +30,7 @@ includes = ["array", "cstdint", "vector"]
3030
}
3131
]
3232
'''
33-
[cases.array_uint64_length_8]
33+
[cases.uint64_length_8]
3434
param_types = ["std::array<std::uint64_t, 8>&"]
3535
setup = "return {{0,1,2,3,4,5,6,7}};"
3636
expect_json = '''
@@ -44,7 +44,7 @@ includes = ["array", "cstdint", "vector"]
4444
}
4545
]
4646
'''
47-
[cases.array_vector_length_1]
47+
[cases.vector_length_1]
4848
param_types = ["std::array<std::vector<std::uint64_t>, 1>&"]
4949
setup = "return {{std::initializer_list<std::uint64_t>({1,2,3,4,5})}};"
5050
expect_json = '''
@@ -64,7 +64,7 @@ includes = ["array", "cstdint", "vector"]
6464
}
6565
]
6666
'''
67-
[cases.array_vector_length_2]
67+
[cases.vector_length_2]
6868
param_types = ["std::array<std::vector<std::uint64_t>, 2>&"]
6969
setup = "return {{std::initializer_list<std::uint64_t>({1,2,3,4,5}), std::initializer_list<std::uint64_t>({6,7,8,9})}};"
7070
expect_json = '''

0 commit comments

Comments
 (0)