Skip to content

Commit

Permalink
Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 5, 2017
1 parent ae5a3d3 commit ccf8e6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/gui/testqgsdualview.cpp
Expand Up @@ -280,7 +280,7 @@ void TestQgsDualView::testNoGeom()
QgsFeatureRequest req;
dv->init( mPointsLayer, mCanvas, req );
// check that both master model AND cache are using geometry
QgsAttributeTableModel* model = dv->masterModel();
QgsAttributeTableModel *model = dv->masterModel();
QVERIFY( model->layerCache()->cacheGeometry() );
QVERIFY( !( model->request().flags() & QgsFeatureRequest::NoGeometry ) );

Expand All @@ -298,7 +298,7 @@ void TestQgsDualView::testNoGeom()
dv->init( mPointsLayer, mCanvas, req );
model = dv->masterModel();
QVERIFY( !model->layerCache()->cacheGeometry() );
QVERIFY(( model->request().flags() & QgsFeatureRequest::NoGeometry ) );
QVERIFY( ( model->request().flags() & QgsFeatureRequest::NoGeometry ) );
}

QGSTEST_MAIN( TestQgsDualView )
Expand Down

0 comments on commit ccf8e6c

Please sign in to comment.