Skip to content

Commit

Permalink
Fix linting issue on acceptance_test.
Browse files Browse the repository at this point in the history
  • Loading branch information
markspec committed Jul 31, 2024
1 parent 81f85be commit 67f17b4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions mdio/acceptance_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,8 @@ TEST(Variable, xarrayCompatibility) {
basePath = "../..";
}

std::string srcPath = std::string(basePath) + "/mdio/regression_tests/zarr_compatibility.py";
std::string srcPath =
std::string(basePath) + "/mdio/regression_tests/zarr_compatibility.py";
std::string filePathBase = "./zarrs/acceptance/";
std::string command = "python3 " + srcPath + " " + filePathBase;

Expand Down Expand Up @@ -1657,8 +1658,8 @@ TEST(Dataset, xarrayCompatible) {
basePath = "../..";
}

std::string srcPath =
std::string(basePath) + "/mdio/regression_tests/xarray_compatibility_test.py";
std::string srcPath = std::string(basePath) +
"/mdio/regression_tests/xarray_compatibility_test.py";
std::string datasetPath = "./zarrs/acceptance";
std::string command = "python3 " + srcPath + " " + datasetPath + " False";
int status = system(command.c_str());
Expand Down

0 comments on commit 67f17b4

Please sign in to comment.