Skip to content

Commit bef8a15

Browse files
committed
Fix table name inconsistency in BCP tests to ensure CI compatibility
1 parent c0befd8 commit bef8a15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/SQLClientSwiftTests/SQLBCPTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ final class SQLBCPTests: XCTestCase {
3737
rows.append(SQLRow(storage, columnTypes: ["Id": 56, "Name": 39, "Value": 62]))
3838
}
3939

40-
let inserted = try await client.bulkInsert(table: "tempdb..BCPTest", rows: rows)
40+
let inserted = try await client.bulkInsert(table: "BCPTest", rows: rows)
4141
XCTAssertEqual(inserted, 100)
4242

4343
let countRows = try await client.query("SELECT COUNT(*) as cnt FROM BCPTest")

0 commit comments

Comments
 (0)