Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix tests after port to QGraphicsView
  • Loading branch information
mattrdash committed Aug 31, 2011
1 parent 92713bf commit 1ad607c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/notetest.cpp
Expand Up @@ -40,8 +40,8 @@ void NoteTest::testCreation()
QVERIFY(n->next() == 0);
QVERIFY(n->prev() == 0);
QVERIFY(n->content() == 0);
QCOMPARE(n->x(), 0);
QCOMPARE(n->y(), -1);
QCOMPARE(n->x(), 0.0);
QCOMPARE(n->y(), 0.0);
QCOMPARE(n->width(), Note::GROUP_WIDTH);
QCOMPARE(n->height(), Note::MIN_HEIGHT);
delete n;
Expand Down

0 comments on commit 1ad607c

Please sign in to comment.