summaryrefslogtreecommitdiff
path: root/test/api/render_missing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/api/render_missing.cpp')
-rw-r--r--test/api/render_missing.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/test/api/render_missing.cpp b/test/api/render_missing.cpp
index 8c3a1f8e52..f29a0c2b9c 100644
--- a/test/api/render_missing.cpp
+++ b/test/api/render_missing.cpp
@@ -45,15 +45,7 @@ TEST(API, TEST_REQUIRES_SERVER(RenderMissingTile)) {
std::rethrow_exception(err);
} catch (const std::exception& ex) {
message = ex.what();
-#ifdef MBGL_HTTP_NSURL
- EXPECT_STREQ("Could not connect to the server.", ex.what());
-#elif MBGL_HTTP_CURL
- const char* prefix = "Couldn't connect to server:";
- EXPECT_EQ(0, strncmp(prefix, ex.what(), strlen(prefix))) << "Full message is: \""
- << ex.what() << "\"";
-#else
- FAIL();
-#endif
+ EXPECT_TRUE(message.find("connect") != std::string::npos);
}
promise.set_value();
});