diff options
Diffstat (limited to 'test/style/source.test.cpp')
-rw-r--r-- | test/style/source.test.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/style/source.test.cpp b/test/style/source.test.cpp index 01f54d6b18..fb7737e417 100644 --- a/test/style/source.test.cpp +++ b/test/style/source.test.cpp @@ -393,7 +393,7 @@ TEST(Source, GeoJSonSourceUrlUpdate) { }; test.observer.sourceDescriptionChanged = [&] (Source&) { - //Should be called (test will hang if it doesn't) + // Should be called (test will hang if it doesn't) test.end(); }; @@ -404,12 +404,12 @@ TEST(Source, GeoJSonSourceUrlUpdate) { GeoJSONSource source("source"); source.baseImpl->setObserver(&test.observer); - //Load initial, so the source state will be loaded=true + // Load initial, so the source state will be loaded=true source.baseImpl->loadDescription(test.fileSource); - //Schedule an update + // Schedule an update test.loop.invoke([&] () { - //Update the url + // Update the url source.setURL(std::string("http://source-url.ext")); }); |