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:
Trutnev Aleksei
2021-10-29 19:30:35 +03:00
committed by GitHub
parent e70ba29d95
commit 6a73e5a720
14 changed files with 204 additions and 204 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ TEST(ConcQueue, PushPop)
{
int x;
q.pop(x);
EXPECT_EQ(x, i);
EXPECT_EQ(i, x);
}
}