aboutsummaryrefslogtreecommitdiff
path: root/test/common/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/common/array.h')
-rw-r--r--test/common/array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/common/array.h b/test/common/array.h
index 5ab6b73ef1..c85e056b19 100644
--- a/test/common/array.h
+++ b/test/common/array.h
@@ -196,7 +196,7 @@ class ArrayTestSuite : public CxxTest::TestSuite
void test_array_constructor_str() {
const char *array1[] = { "a", "b", "c" };
- Common::StringList array2(array1, 3);
+ Common::Array<Common::String> array2(array1, 3);
TS_ASSERT_EQUALS(array2[0], "a");
TS_ASSERT_EQUALS(array2[1], "b");