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

github.com/ccgus/fmdb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAugust Mueller <gus@flyingmeat.com>2022-10-06 19:26:19 +0300
committerAugust Mueller <gus@flyingmeat.com>2022-10-06 19:26:19 +0300
commit3e33e814a2b4968ad5eb73b9fc75066756daa9d2 (patch)
tree4f17e9f21a6f61c754e3116e5514892d90220923
parent3e5ecb6fee94de8f1b2e483f71e73ac9703997bc (diff)
Quick little test fix by cleaning up where the actual temp dir is.
-rw-r--r--Tests/FMDBTempDBTests.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/FMDBTempDBTests.m b/Tests/FMDBTempDBTests.m
index bb759df..035f8ab 100644
--- a/Tests/FMDBTempDBTests.m
+++ b/Tests/FMDBTempDBTests.m
@@ -8,8 +8,8 @@
#import "FMDBTempDBTests.h"
-static NSString *const testDatabasePath = @"/tmp/tmp.db";
-static NSString *const populatedDatabasePath = @"/tmp/tmp-populated.db";
+static NSString *const testDatabasePath = @"/private/tmp/tmp.db";
+static NSString *const populatedDatabasePath = @"/private/tmp/tmp-populated.db";
@implementation FMDBTempDBTests