summaryrefslogtreecommitdiff
path: root/test/storage
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <thiago@mapbox.com>2015-11-23 14:55:09 +0200
committerThiago Marcos P. Santos <thiago@mapbox.com>2015-12-01 11:49:02 +0200
commitc117b7e3f45650f2e370d3268ece6072ee258787 (patch)
tree9f2f6e4952abe49506a87dc8586330e87ae325d6 /test/storage
parent07c0424ab95a5e6b963c6a2f387adb9f2aa26c9b (diff)
downloadqtlocation-mapboxgl-c117b7e3f45650f2e370d3268ece6072ee258787.tar.gz
[core] Removed libuv dependency from AssetFSContext
Diffstat (limited to 'test/storage')
-rw-r--r--test/storage/directory_reading.cpp2
-rw-r--r--test/storage/file_reading.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/storage/directory_reading.cpp b/test/storage/directory_reading.cpp
index 71ec761361..72aabe2eb3 100644
--- a/test/storage/directory_reading.cpp
+++ b/test/storage/directory_reading.cpp
@@ -29,7 +29,7 @@ TEST_F(Storage, AssetReadDirectory) {
#ifdef MBGL_ASSET_ZIP
EXPECT_EQ("No such file", res.error->message);
#elif MBGL_ASSET_FS
- EXPECT_EQ("illegal operation on a directory", res.error->message);
+ EXPECT_EQ("Is a directory", res.error->message);
#endif
loop.stop();
diff --git a/test/storage/file_reading.cpp b/test/storage/file_reading.cpp
index adae2ebf1f..8d38303096 100644
--- a/test/storage/file_reading.cpp
+++ b/test/storage/file_reading.cpp
@@ -90,7 +90,7 @@ TEST_F(Storage, AssetNonExistentFile) {
#ifdef MBGL_ASSET_ZIP
EXPECT_EQ("No such file", res.error->message);
#elif MBGL_ASSET_FS
- EXPECT_EQ("no such file or directory", res.error->message);
+ EXPECT_EQ("No such file or directory", res.error->message);
#endif
loop.stop();
NonExistentFile.finish();