diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2017-12-04 00:17:50 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-12-03 19:07:03 -0800 |
commit | cab0699d4c50af126b84d637e5801ecb8cf26638 (patch) | |
tree | 265e2a4dedc814d2c8e1d0b7742d1e40b8ee666b /tests/testgitstorage.cpp | |
parent | fd34cd48306c2b81d6ccc2396b34bea670ec5c13 (diff) | |
download | subsurface-cab0699d4c50af126b84d637e5801ecb8cf26638.tar.gz |
Fix typo in TestGitStorage: SapleDives -> SampleDives
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'tests/testgitstorage.cpp')
-rw-r--r-- | tests/testgitstorage.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/testgitstorage.cpp b/tests/testgitstorage.cpp index 2f14b3f18..9387fbd81 100644 --- a/tests/testgitstorage.cpp +++ b/tests/testgitstorage.cpp @@ -210,17 +210,17 @@ void TestGitStorage::testGitStorageCloudMerge() QDir localCacheDirectorySave(localCacheDir + "save"); QCOMPARE(localCacheDirectory.rename(localCacheDir + "save", localCacheDir), true); QCOMPARE(parse_file(qUtf8Printable(cloudTestRepo)), 0); - QCOMPARE(save_dives("./SapleDivesV3plus10-11-12-merged.ssrf"), 0); + QCOMPARE(save_dives("./SampleDivesV3plus10-11-12-merged.ssrf"), 0); clear_dive_file_data(); QCOMPARE(parse_file("./SampleDivesV3plus10local.ssrf"), 0); QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test11.xml"), 0); process_dives(false, false); QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/test12.xml"), 0); process_dives(false, false); - QCOMPARE(save_dives("./SapleDivesV3plus10-11-12.ssrf"), 0); - QFile org("./SapleDivesV3plus10-11-12-merged.ssrf"); + QCOMPARE(save_dives("./SampleDivesV3plus10-11-12.ssrf"), 0); + QFile org("./SampleDivesV3plus10-11-12-merged.ssrf"); org.open(QFile::ReadOnly); - QFile out("./SapleDivesV3plus10-11-12.ssrf"); + QFile out("./SampleDivesV3plus10-11-12.ssrf"); out.open(QFile::ReadOnly); QTextStream orgS(&org); QTextStream outS(&out); |