From 40122e423359d8ae2042e63c7c4cdf4cb5fcbdca Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Wed, 2 Sep 2015 17:31:13 +0200 Subject: [PATCH] Prevent tests from hanging when offline From 31e324797c06d366f49db453a67a119819ca8012 Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Wed, 2 Sep 2015 17:28:12 +0200 Subject: [PATCH] Test that there is a dive so that the TestGitStorage does not hang when offline. Signed-off-by: Robert C. Helling Signed-off-by: Dirk Hohndel --- tests/testgitstorage.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/testgitstorage.cpp b/tests/testgitstorage.cpp index 99ee8d8c4..57a36d10a 100644 --- a/tests/testgitstorage.cpp +++ b/tests/testgitstorage.cpp @@ -272,6 +272,7 @@ void TestGitStorage::testGitStorageCloudMerge3() QCOMPARE(parse_file(qPrintable(cloudTestRepo)), 0); process_dives(false, false); struct dive *dive = get_dive(0); + QVERIFY(dive != 0); dive->notes = strdup("Create multi line dive notes\nLine 2\nLine 3\nLine 4\nLine 5\nThat should be enough"); dive = get_dive(1); dive->notes = strdup("Create multi line dive notes\nLine 2\nLine 3\nLine 4\nLine 5\nThat should be enough");