Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[expression-test] Change image type to resolvedImage
Browse files Browse the repository at this point in the history
  • Loading branch information
Juha Alanen committed Nov 1, 2019
1 parent fb2b5d6 commit b0426ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion expression-test/expression_test_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ optional<Value> toValue(const JSValue& jsvalue) {
style::expression::type::Type stringToType(const std::string& type) {
using namespace style::expression;
if (type == "string"s || type == "number-format"s ||
type == "image"s) { // TODO: replace once we implement image expressions
type == "resolvedImage"s) { // TODO: replace once we implement image expressions
return type::String;
} else if (type == "number"s) {
return type::Number;
Expand Down

0 comments on commit b0426ff

Please sign in to comment.