From 3069202354536a3450b6adc2fdccb0b4a4575b84 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Tue, 22 Nov 2016 01:38:03 +0100 Subject: [PATCH] fix(tests): Patch color_util unit test --- tests/unit_tests/utils/color.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/utils/color.cpp b/tests/unit_tests/utils/color.cpp index 066c0752..d079f1a5 100644 --- a/tests/unit_tests/utils/color.cpp +++ b/tests/unit_tests/utils/color.cpp @@ -24,7 +24,7 @@ int main() { "hex"_test = [] { uint32_t colorA{0x123456}; - expect(color_util::hex(colorA).compare("#123456") == 0); + expect(color_util::hex(colorA).compare("#123456") == 0); uint32_t colorB{0xCC123456}; expect(color_util::hex(colorB).compare("#cc123456") == 0); uint32_t colorC{0x00ffffff};