"tools/git@developer.sourcefind.cn:OpenDAS/dlib.git" did not exist on "c4cf31a746e1e20908aff0f46ed9b2fd94ec25ee"
Commit 93b992d7 authored by Davis King's avatar Davis King
Browse files

slightly improve tests

parent 3f163bd4
...@@ -447,8 +447,8 @@ namespace ...@@ -447,8 +447,8 @@ namespace
p_rgba.alpha = 7; p_rgba.alpha = 7;
p_gray = 8; p_gray = 8;
p_schar = 8; p_schar = 9;
p_int = 8; p_int = 10;
p_float = 8.5; p_float = 8.5;
p_hsi.h = 9; p_hsi.h = 9;
...@@ -499,8 +499,8 @@ namespace ...@@ -499,8 +499,8 @@ namespace
DLIB_TEST(p_rgba.alpha == 7); DLIB_TEST(p_rgba.alpha == 7);
DLIB_TEST(p_gray == 8); DLIB_TEST(p_gray == 8);
DLIB_TEST(p_schar == 8); DLIB_TEST(p_schar == 9);
DLIB_TEST(p_int == 8); DLIB_TEST(p_int == 10);
DLIB_TEST(p_float == 8.5); DLIB_TEST(p_float == 8.5);
DLIB_TEST(p_hsi.h == 9); DLIB_TEST(p_hsi.h == 9);
...@@ -549,9 +549,9 @@ namespace ...@@ -549,9 +549,9 @@ namespace
DLIB_TEST(p_rgba.alpha == 7); DLIB_TEST(p_rgba.alpha == 7);
DLIB_TEST(p_gray == 8); DLIB_TEST(p_gray == 8);
DLIB_TEST(p_int == 8); DLIB_TEST(p_int == 10);
DLIB_TEST(p_float == 8.5); DLIB_TEST(p_float == 8.5);
DLIB_TEST(p_schar == 8); DLIB_TEST(p_schar == 9);
DLIB_TEST(p_hsi.h == 9); DLIB_TEST(p_hsi.h == 9);
DLIB_TEST(p_hsi.s == 10); DLIB_TEST(p_hsi.s == 10);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment