Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix xenial build
  • Loading branch information
jef-n committed Nov 11, 2018
1 parent bd5c44d commit 20a0053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/providers/testqgsgdalprovider.cpp
Expand Up @@ -162,7 +162,7 @@ void TestQgsGdalProvider::noDataOutsideExtent()
if ( rp )
{
std::unique_ptr<QgsRasterBlock> block( rp->block( 1, QgsRectangle( 10, 10, 12, 12 ), 16, 16 ) );
QVERIFY( block );
QVERIFY( block != nullptr );
QCOMPARE( block->width(), 16 );
QCOMPARE( block->height(), 16 );
for ( int y = 0; y < 16; ++y )
Expand Down

1 comment on commit 20a0053

@jef-n
Copy link
Member Author

@jef-n jef-n commented on 20a0053 Nov 11, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and stretch

Please sign in to comment.