Skip to content

Commit 1cfdd5c

Browse files
tony8713claude
andauthored
fix(ci): update expired sepolia ENS fixture in lookupDomains test (#482)
The sepolia lookup test asserted `testchaitu.eth`, a wrapped ENS name on sepolia that expired on 2026-07-01 (expiryDate 1782909240). lookupDomains filters out expired domains, so the name is correctly dropped and CI has failed on master since expiry. Switch the assertion to `chaitu.eth`, which the same account owns with an expiry in 2038, keeping the sepolia routing check intact without the time-brittle fixture. Co-authored-by: Tony <222686154+tony8713@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 4a2877c commit 1cfdd5c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/integration/lookupDomains.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('lookupDomains', () => {
1212
it('should return an array of addresses on sepolia', async () => {
1313
const result = await lookupDomains('0x24F15402C6Bb870554489b2fd2049A85d75B982f', '11155111');
1414

15-
expect(result).toContain('testchaitu.eth');
15+
expect(result).toContain('chaitu.eth');
1616
});
1717

1818
it('should return an empty array if the address is not provided', async () => {

0 commit comments

Comments
 (0)