0.03006 - fix columns_info_for interaction
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 22dump.t
index 19efcbc..5d32c90 100644 (file)
@@ -27,7 +27,7 @@ my $dump_path = './t/_dump';
 
 plan tests => 8;
 
-rmtree($dump_path, 1, 0711);
+rmtree($dump_path, 1, 1);
 
 eval { DBICTest::Schema::1->connect($make_dbictest_db::dsn) };
 ok(!$@, 'no death with dump_directory set') or diag "Dump failed: $@";
@@ -47,7 +47,7 @@ my @warnings_regexes = (
 
 like(shift @warn_output, $_) foreach (@warnings_regexes);
 
-rmtree($dump_path, 1, 0711);
+rmtree($dump_path, 1, 1);
 
 eval { DBICTest::Schema::2->connect($make_dbictest_db::dsn) };
 ok(!$@, 'no death with dump_directory set (overwrite1)')