diff options
author | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-02-18 16:33:35 +0100 |
---|---|---|
committer | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-02-18 16:33:35 +0100 |
commit | 792357cb81ffa8b2f4fe5c16b1e359d8e51a53ae (patch) | |
tree | 027b57e1a22c28489d2950623408b36512736dc2 /test/core/common/VariantConverterTest.cpp | |
parent | 1f459bc05a45ae25c0e68c9b28b14444f09a53d6 (diff) |
changed cardinality toString conversion to be reparseable as cardinality.
Diffstat (limited to 'test/core/common/VariantConverterTest.cpp')
-rw-r--r-- | test/core/common/VariantConverterTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/common/VariantConverterTest.cpp b/test/core/common/VariantConverterTest.cpp index 9654a7b..2860777 100644 --- a/test/core/common/VariantConverterTest.cpp +++ b/test/core/common/VariantConverterTest.cpp @@ -244,7 +244,7 @@ TEST(VariantConverter, toString) VariantConverter::Mode::ALL, logger); assertStringConversion(M, "{\"b\":true,\"d\":2.7,\"i\":6,\"s\":\"test\"}", true, VariantConverter::Mode::ALL, logger); - assertStringConversion(C, "<cardinality {2-4, >6}>", true, + assertStringConversion(C, "{2-4, >6}", true, VariantConverter::Mode::ALL, logger); } |