From 37a4660ca367f141b9e0dedf3932c74f0ee0c920 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Thu, 13 Feb 2020 15:05:47 +0000 Subject: update style.test --- test/style/style.test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/style/style.test.cpp b/test/style/style.test.cpp index 01ecaf8578..d968998165 100644 --- a/test/style/style.test.cpp +++ b/test/style/style.test.cpp @@ -129,7 +129,7 @@ TEST(Style, SourceImplsOrder) { TEST(Style, AddRemoveImage) { util::RunLoop loop; auto fileSource = std::make_shared(); - Style::Impl style{fileSource, 1.0}; + StyleImpl style{fileSource, 1.0}; style.addImage(std::make_unique("one", PremultipliedImage({16, 16}), 2)); style.addImage(std::make_unique("two", PremultipliedImage({16, 16}), 2)); style.addImage(std::make_unique("three", PremultipliedImage({16, 16}), 2)); @@ -140,4 +140,4 @@ TEST(Style, AddRemoveImage) { EXPECT_TRUE(!!style.getImage("three")); EXPECT_FALSE(!!style.getImage("two")); EXPECT_FALSE(!!style.getImage("four")); -} \ No newline at end of file +} -- cgit v1.2.1