Skip to content

Commit

Permalink
facepalm
Browse files Browse the repository at this point in the history
Signed-off-by: Louise Poubel <[email protected]>
  • Loading branch information
chapulina committed Jan 26, 2022
1 parent a8ab1c0 commit 147a5e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Helpers_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,15 @@ TEST(HelpersTest, IGN_UTILS_TEST_DISABLED_ON_WIN32(findFirstByProperty))

// Construct a list
auto o0 = new QObject();
ASSERT_NE(nullptr, o0)
ASSERT_NE(nullptr, o0);
o0->setProperty("banana", 1.0);

auto o1 = new QObject();
ASSERT_NE(nullptr, o1)
ASSERT_NE(nullptr, o1);
o1->setProperty("banana", 2.0);

auto o2 = new QObject();
ASSERT_NE(nullptr, o2)
ASSERT_NE(nullptr, o2);
o2->setProperty("banana", 1.0);

QList<QObject *> list;
Expand Down

0 comments on commit 147a5e4

Please sign in to comment.