summaryrefslogtreecommitdiff
path: root/test/src/mbgl/test/stub_file_source.hpp
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <thiago@mapbox.com>2016-06-10 21:28:29 +0300
committerThiago Marcos P. Santos <thiago@mapbox.com>2016-06-21 18:58:48 +0200
commit2be2340c303f018ba3a6661708051811e4cdbb70 (patch)
tree1059a8f301d99f8bc1610a01ea17db49f0f37738 /test/src/mbgl/test/stub_file_source.hpp
parentb06176cf116eefb821f9d51c89c9c6bad6b67d41 (diff)
downloadqtlocation-mapboxgl-2be2340c303f018ba3a6661708051811e4cdbb70.tar.gz
[tests] Do not re-trigger answered requests
This happens on real file sources when tiles expire or in case of error. Here we only retry on error.
Diffstat (limited to 'test/src/mbgl/test/stub_file_source.hpp')
-rw-r--r--test/src/mbgl/test/stub_file_source.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/src/mbgl/test/stub_file_source.hpp b/test/src/mbgl/test/stub_file_source.hpp
index b88fb59907..ee4175cc3f 100644
--- a/test/src/mbgl/test/stub_file_source.hpp
+++ b/test/src/mbgl/test/stub_file_source.hpp
@@ -13,6 +13,7 @@ public:
~StubFileSource() override;
std::unique_ptr<AsyncRequest> request(const Resource&, Callback) override;
+ void remove(AsyncRequest*);
using ResponseFunction = std::function<optional<Response> (const Resource&)>;
@@ -30,8 +31,6 @@ public:
ResponseFunction spriteImageResponse;
private:
- friend class StubFileRequest;
-
// The default behavior is to throw if no per-kind callback has been set.
optional<Response> defaultResponse(const Resource&);