Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Some qt6 compilation fixes in tests
  • Loading branch information
nyalldawson committed Jul 20, 2021
1 parent 7111144 commit 1773eac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/src/core/testqgsgeonodeconnection.cpp
Expand Up @@ -156,7 +156,7 @@ void TestQgsGeoNodeConnection::testStyleAPI()
QVERIFY( geoNodeStyle.body.toString().contains( QStringLiteral( "</qgis>" ) ) );

QList<QgsGeoNodeStyle> geoNodeStyles = geonodeRequest.fetchStylesBlocking( QStringLiteral( "airports" ) );
QgsDebugMsg( geoNodeStyles.count() );
QgsDebugMsg( QString::number( geoNodeStyles.count() ) );
QVERIFY( geoNodeStyles.count() == 2 );

}
Expand Down
2 changes: 1 addition & 1 deletion tests/src/core/testqgspagesizeregistry.cpp
Expand Up @@ -15,11 +15,11 @@
* *
***************************************************************************/

#include "qgstest.h"
#include "qgspagesizeregistry.h"
#include "qgis.h"
#include "qgsapplication.h"
#include <QObject>
#include <QTest>

class TestQgsPageSizeRegistry : public QObject
{
Expand Down

0 comments on commit 1773eac

Please sign in to comment.