Skip to content

Commit bf496a7

Browse files
committed
Use QApplication in tests
1 parent 521d9a3 commit bf496a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
#include <QGuiApplication>
1+
#include <QApplication>
22
#include <gtest/gtest.h>
33

44
int main(int argc, char **argv)
55
{
6-
QGuiApplication a(argc, argv);
6+
QApplication a(argc, argv);
77
::testing::InitGoogleTest(&argc, argv);
88
return RUN_ALL_TESTS();
99
}

0 commit comments

Comments
 (0)