Skip to content

Commit

Permalink
Different folder names for both tests
Browse files Browse the repository at this point in the history
  • Loading branch information
desistefanova committed Mar 25, 2022
1 parent db73909 commit 6b1f75a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/configuration_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Future<void> main([List<String>? args]) async {

test('Configuration - disableFormatUpgrade=true throws error', () async {
const realmBundleFile = "test/data/realm_files/realm-bundle.realm";
final realmDir = "test/${Configuration.defaultPath}";
final realmDir = "test/${Configuration.defaultPath}true";
final realmPath = "$realmDir/${Configuration.defaultPath}";
try {
await Directory(realmDir).create();
Expand All @@ -158,7 +158,7 @@ Future<void> main([List<String>? args]) async {

test('Configuration - disableFormatUpgrade=false', () async {
const realmBundleFile = "test/data/realm_files/realm-bundle.realm";
final realmDir = "test/${Configuration.defaultPath}";
final realmDir = "test/${Configuration.defaultPath}false";
final realmPath = "$realmDir/${Configuration.defaultPath}";

try {
Expand Down

0 comments on commit 6b1f75a

Please sign in to comment.