Skip to content

Commit

Permalink
Revert #25797 due to #26016 to get tests working reliably again.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajcvickers committed Sep 16, 2021
1 parent 23d6a46 commit 812f6f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ public override void Delete()

if (!string.IsNullOrEmpty(path))
{
SqliteConnection.ClearAllPools();
SqliteConnection.ClearPool(new SqliteConnection(Dependencies.Connection.ConnectionString));
// See issues #25797 and #26016
// SqliteConnection.ClearAllPools();
File.Delete(path);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public async Task Create_sets_journal_mode_to_wal(bool async)
Assert.Equal("wal", journalMode);
}

[ConditionalTheory]
[ConditionalTheory (Skip = "Issues #25797 and #26016")]
[InlineData(false)]
[InlineData(true)]
public async Task Delete_works_even_when_different_connection_exists_to_same_file(bool async)
Expand Down

0 comments on commit 812f6f0

Please sign in to comment.