diff options
author | John Firebaugh <john.firebaugh@gmail.com> | 2018-06-29 14:32:39 -0700 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2018-06-29 15:38:11 -0700 |
commit | 647959a85327660a8d0b35da0b8a247820a36c15 (patch) | |
tree | 75e3b323b96d6bd36b7a351cb04b6f3a565399e4 /test | |
parent | 25ac89e018a27fc689f742429c78ba492682b0a0 (diff) | |
download | qtlocation-mapboxgl-647959a85327660a8d0b35da0b8a247820a36c15.tar.gz |
[core] Add assertions to expression constructors
Diffstat (limited to 'test')
-rw-r--r-- | test/style/conversion/stringify.test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/style/conversion/stringify.test.cpp b/test/style/conversion/stringify.test.cpp index 567c022036..bc73b0cedb 100644 --- a/test/style/conversion/stringify.test.cpp +++ b/test/style/conversion/stringify.test.cpp @@ -79,7 +79,7 @@ TEST(Stringify, Value) { TEST(Stringify, Filter) { using namespace mbgl::style::expression::dsl; ASSERT_EQ(stringify(Filter()), "null"); - ASSERT_EQ(stringify(Filter(eq(literal("a"), literal(1.0)))), "[\"==\",\"a\",1.0]"); + ASSERT_EQ(stringify(Filter(eq(literal("a"), literal("b")))), "[\"==\",\"a\",\"b\"]"); } TEST(Stringify, CameraFunction) { |