mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 23:33:05 +04:00
Merge pull request #20922 from alexgiving:atrutnev/align_expect_assert_macros
GAPI: Align EXPECT/ASSERT macros * Align TEST macros * restart CI * Fix ASSERT_GT in gapi_async_test
This commit is contained in:
@@ -1130,7 +1130,7 @@ TEST_F(GAPI_Streaming_TemplateTypes, UnusedVectorIsOK)
|
||||
}
|
||||
GAPI_Assert(out_mat || out_int);
|
||||
if (out_int) {
|
||||
EXPECT_EQ( 3, out_int.value());
|
||||
EXPECT_EQ(3, out_int.value());
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1748,7 +1748,7 @@ TEST(GAPI_Streaming_Desync, MultipleDesyncOutputs_1) {
|
||||
if (out_vec || out_int) {
|
||||
EXPECT_EQ(320, out_vec.value()[0]);
|
||||
EXPECT_EQ(240, out_vec.value()[1]);
|
||||
EXPECT_EQ( 3, out_int.value());
|
||||
EXPECT_EQ(3, out_int.value());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user