From f04ab0cbae92dd5dc0675c88a85c55c4b865a007 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Tue, 14 May 2019 10:50:10 +0100 Subject: [PATCH] Update svg unit tests post 831e353c5dd49f153a9e10c58415ac650fe88c35 --- test/unit/svg/svg_parser_test.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/unit/svg/svg_parser_test.cpp b/test/unit/svg/svg_parser_test.cpp index 2f957e084..9cd693bef 100644 --- a/test/unit/svg/svg_parser_test.cpp +++ b/test/unit/svg/svg_parser_test.cpp @@ -666,8 +666,8 @@ TEST_CASE("SVG parser") { std::string svg_name("./test/data/svg/gradient-nodef.svg"); char const* expected_errors[] = { - "SVG parse error: failed to locate fill with \"MyGradient\"", - "SVG parse error: failed to locate stroke with \"MyGradient\"" + "SVG parse error: failed to locate fill with \"MyGradient\"", + "SVG parse error: failed to locate stroke with \"MyGradient\"" }; { test_parser p; @@ -692,8 +692,8 @@ TEST_CASE("SVG parser") { std::string svg_name("./test/data/svg/gradient-no-id.svg"); char const* expected_errors[] = { - "SVG parse error: failed to locate fill with \"MyGradient\"", - "SVG parse error: failed to locate stroke with \"MyGradient\"" + "SVG parse error: failed to locate fill with \"MyGradient\"", + "SVG parse error: failed to locate stroke with \"MyGradient\"" }; std::ifstream in(svg_name.c_str());