1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

spelling fixes

This commit is contained in:
klemens
2019-02-09 22:29:54 +01:00
parent f414c16c13
commit 997b7b18af
36 changed files with 50 additions and 50 deletions
@@ -73,7 +73,7 @@ TEST(GMetaArg, Traits_Are_ButLast_Positive)
using namespace cv::detail;
static_assert(are_meta_descrs_but_last<cv::GScalarDesc, int>::value,
"List is valid (int is ommitted)");
"List is valid (int is omitted)");
static_assert(are_meta_descrs_but_last<cv::GMatDesc, cv::GScalarDesc, cv::GCompileArgs>::value,
"List is valid (GCompileArgs are omitted)");
@@ -320,7 +320,7 @@ TEST(IslandsFusion, PartionOverlapUserIsland)
// |
// (in1) --------------------------`
// Check that internal islands does't overlap user island
// Check that internal islands doesn't overlap user island
namespace J = Jupiter;
namespace S = Saturn;
@@ -124,7 +124,7 @@ TEST_F(Islands, TwoIslands)
}
// FIXME: Disabled since currently merge procedure merges two into one
// succesfully
// successfully
TEST_F(Islands, DISABLED_Two_Islands_With_Same_Name_Should_Fail)
{
// (in) -> Blur1 -> (tmp0) -> Blur2 -> (tmp1) -> Blur3 -> (tmp2) -> Blur4 -> (out)
@@ -90,7 +90,7 @@ TYPED_TEST(VectorRefT, ReadAfterWrite)
EXPECT_EQ(0u, writer.wref().size()); // Check the initial state
EXPECT_EQ(0u, reader.rref().size());
writer.wref().emplace_back(); // Check that write is successfull
writer.wref().emplace_back(); // Check that write is successful
EXPECT_EQ(1u, writer.wref().size());
EXPECT_EQ(1u, vec.size()); // Check that changes are reflected to the original container
@@ -183,7 +183,7 @@ TYPED_TEST(VectorRefU, ReadAfterWrite)
EXPECT_EQ(0u, writer.wref<T>().size()); // Check the initial state
EXPECT_EQ(0u, reader.rref<T>().size());
writer.wref<T>().emplace_back(); // Check that write is successfull
writer.wref<T>().emplace_back(); // Check that write is successful
EXPECT_EQ(1u, writer.wref<T>().size());
EXPECT_EQ(1u, vec.size()); // Check that changes are reflected to the original container