diff --git a/nostrdb/Test/NdbTests.swift b/nostrdb/Test/NdbTests.swift index 846fff0c..6466d7a0 100644 --- a/nostrdb/Test/NdbTests.swift +++ b/nostrdb/Test/NdbTests.swift @@ -12,8 +12,8 @@ final class NdbTests: XCTestCase { override func setUpWithError() throws { // Put setup code here. This method is called before the invocation of each test method in the class. - try FileManager.default.removeItem(atPath: Ndb.db_path + "/lock.mdb") - try FileManager.default.removeItem(atPath: Ndb.db_path + "/data.mdb") + try? FileManager.default.removeItem(atPath: Ndb.db_path + "/lock.mdb") + try? FileManager.default.removeItem(atPath: Ndb.db_path + "/data.mdb") } override func tearDownWithError() throws {