Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorMaxim Pimenov <m@maps.me>2019-03-19 13:11:53 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2019-03-19 15:06:58 +0300
commitdb525bf9088dc134f78d5f5ee930765a31b8a4c8 (patch)
tree0a6f7995e70773df57d0fc28cd9ddd539b2dc908 /editor
parent939620a534af3d58288c4734fa99f3a85f4b587e (diff)
[coding] Removed JoinFoldersToPath.
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_tests/editor_notes_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_tests/editor_notes_test.cpp b/editor/editor_tests/editor_notes_test.cpp
index 8d1b868333..fc863e76e7 100644
--- a/editor/editor_tests/editor_notes_test.cpp
+++ b/editor/editor_tests/editor_notes_test.cpp
@@ -16,7 +16,7 @@ using platform::tests_support::ScopedFile;
UNIT_TEST(Notes_Smoke)
{
auto const fileName = "notes.xml";
- auto const fullFileName = base::JoinFoldersToPath({GetPlatform().WritableDir()}, fileName);
+ auto const fullFileName = base::JoinPath(GetPlatform().WritableDir(), fileName);
ScopedFile sf(fileName, ScopedFile::Mode::DoNotCreate);
{
auto const notes = Notes::MakeNotes(fullFileName, true);