Skip to content

Commit

Permalink
Fix to more descriptive test data naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Withalion authored and wonder-sk committed Jan 8, 2025
1 parent ad1475e commit 9f773aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/src/app/testqgsidentify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1301,7 +1301,7 @@ void TestQgsIdentify::identifyPointCloud()
void TestQgsIdentify::identifyVirtualPointCloud()
{
#ifdef HAVE_COPC
std::unique_ptr<QgsPointCloudLayer> pointCloud = std::make_unique<QgsPointCloudLayer>( QStringLiteral( TEST_DATA_DIR ) + "/point_clouds/virtual/sunshine-coast/new-combined.vpc", QStringLiteral( "pointcloud" ), QStringLiteral( "vpc" ) );
std::unique_ptr<QgsPointCloudLayer> pointCloud = std::make_unique<QgsPointCloudLayer>( QStringLiteral( TEST_DATA_DIR ) + "/point_clouds/virtual/sunshine-coast/combined-with-overview.vpc", QStringLiteral( "pointcloud" ), QStringLiteral( "vpc" ) );
QVERIFY( pointCloud->isValid() );
pointCloud->setCrs( QgsCoordinateReferenceSystem( QStringLiteral( "EPSG:28356" ) ) );
QCOMPARE( pointCloud->crs3D().horizontalCrs().authid(), QStringLiteral( "EPSG:28356" ) );
Expand Down
2 changes: 1 addition & 1 deletion tests/src/python/test_qgspointcloudclassifiedrenderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def testRenderTriangles(self):
def testOverviewRender(self):
layer = QgsPointCloudLayer(
unitTestDataPath()
+ "/point_clouds/virtual/sunshine-coast/new-combined.vpc",
+ "/point_clouds/virtual/sunshine-coast/combined-with-overview.vpc",
"test",
"vpc",
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
]
},
"overview": {
"href": "./new-combined-overview.copc.laz",
"href": "./combined-with-overview-overview.copc.laz",
"roles": [
"overview"
]
Expand Down Expand Up @@ -430,7 +430,7 @@
]
},
"overview": {
"href": "./new-combined-overview.copc.laz",
"href": "./combined-with-overview-overview.copc.laz",
"roles": [
"overview"
]
Expand Down Expand Up @@ -648,7 +648,7 @@
]
},
"overview": {
"href": "./new-combined-overview.copc.laz",
"href": "./combined-with-overview-overview.copc.laz",
"roles": [
"overview"
]
Expand Down Expand Up @@ -866,7 +866,7 @@
]
},
"overview": {
"href": "./new-combined-overview.copc.laz",
"href": "./combined-with-overview-overview.copc.laz",
"roles": [
"overview"
]
Expand Down

0 comments on commit 9f773aa

Please sign in to comment.