Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TableProTests/Models/FileTabExternalChangeTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ struct FileTabExternalChangeTests {
var tab = hydratedTab(for: url)

try "SELECT 1 -- saved".write(to: url, atomically: true, encoding: .utf8)
FileTabBaseline.recordWrite(of: "SELECT 1 -- saved", encoding: .utf8, to: url, in: &tab.content)
FileTabBaseline.recordWrite(of: "SELECT 1 -- saved", to: url, in: &tab.content)

#expect(tab.content.savedFileContent == "SELECT 1 -- saved")
#expect(FileTabBaseline.diskChange(in: tab.content) == nil)
Expand Down
1 change: 1 addition & 0 deletions TableProTests/Plugins/OracleColumnStatementsTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
// the outcome its test names.
//

import Foundation
@testable import TablePro
import TableProPluginKit
import Testing
Expand Down
Loading