From e7a816c0c036e923c7daef7162ff18f5fd0fe922 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 14 Jan 2016 18:51:28 +0100 Subject: [PATCH] bdd: Skip geolocation tests if it's unavailable. This should unbreak the build with older Qt versions. --- tests/integration/data/prompt/geolocation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/data/prompt/geolocation.html b/tests/integration/data/prompt/geolocation.html index 876676972..30a9e0662 100644 --- a/tests/integration/data/prompt/geolocation.html +++ b/tests/integration/data/prompt/geolocation.html @@ -23,7 +23,7 @@ if ("geolocation" in navigator) { navigator.geolocation.getCurrentPosition(on_success, on_error); } else { - console.log("[FAIL] geolocation unavailable"); + console.log("[SKIP] geolocation unavailable"); } }