test: update Oracle connection default to service_name in mode test

This commit is contained in:
t8y2 2026-05-23 16:04:33 +08:00
parent 24c334ef61
commit 7d26b48375
1 changed files with 2 additions and 2 deletions

View File

@ -16,6 +16,6 @@ test("Oracle connection mode uses an inline option group", () => {
assert.doesNotMatch(oracleModeBlock, /<Select/);
});
test("legacy Oracle edit configs without a mode are shown as SID connections", () => {
assert.match(source, /oracle_connection_type: config\.oracle_connection_type \|\| "sid"/);
test("legacy Oracle edit configs without a mode default to service_name connections", () => {
assert.match(source, /oracle_connection_type: config\.oracle_connection_type \|\| "service_name"/);
});