fix(tests): sync test expectations with current implementation

Update dialect tests for UTC timestamp functions and cleaner-handler
test for runCleaner's extended parameter signature.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Misaka_Company
2026-04-14 10:47:04 +08:00
parent 35cad8baa9
commit e91b7308a7
3 changed files with 25 additions and 6 deletions

View File

@@ -45,8 +45,8 @@ describe('SqlServerDialect', () => {
})
describe('currentTimestamp', () => {
it('should return GETDATE()', () => {
expect(dialect.currentTimestamp()).toBe('GETDATE()')
it('should return SYSUTCDATETIME()', () => {
expect(dialect.currentTimestamp()).toBe('SYSUTCDATETIME()')
})
})