From ad6f066a2b29da4866a96ba780a4a0a318838a5a Mon Sep 17 00:00:00 2001 From: Saravanamuthu Aka CF Mitrah Date: Wed, 14 Feb 2024 14:27:20 +0530 Subject: [PATCH] Update LDEV2315.cfc --- test/tickets/LDEV2315.cfc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/tickets/LDEV2315.cfc b/test/tickets/LDEV2315.cfc index 487a2ca034..fd67d9ae6d 100644 --- a/test/tickets/LDEV2315.cfc +++ b/test/tickets/LDEV2315.cfc @@ -27,7 +27,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" { expect(res.country).toBe("US"); expect(res.currency.code).toBe("USD"); expect(res.currency.symbol).toBe("$"); // $ - expect(res.dateTimeFormat.date).toBe("EEEE, MMMM d, y"); + expect(res.dateTimeFormat.date).toBe("EEEE, MMMM d, yyyy"); expect(res.dateTimeFormat.time).toBe("h:mm:ss a"); // jpn @@ -44,7 +44,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" { expect(res.country).toBe("BE"); expect(res.currency.code).toBe("EUR"); expect(Asc(res.currency.symbol)).toBe("8364"); // € - expect(res.dateTimeFormat.date).toBe("EEEE d MMMM y"); + expect(res.dateTimeFormat.date).toBe("EEEE d MMMM yyyy"); expect(res.dateTimeFormat.time).toBe("HH:mm:ss"); // spanish (argentina) @@ -53,7 +53,7 @@ component extends="org.lucee.cfml.test.LuceeTestCase" { expect(res.country).toBe("AR"); expect(res.currency.code).toBe("ARS"); expect(Asc(res.currency.symbol)).toBe("36"); // $ - expect(res.dateTimeFormat.date).toBe("EEEE, d 'de' MMMM 'de' y"); + expect(res.dateTimeFormat.date).toBe("EEEE, d 'de' MMMM 'de' yyyy"); expect(res.dateTimeFormat.time).toBe("HH:mm:ss"); setLocale(origLocale); @@ -61,4 +61,4 @@ component extends="org.lucee.cfml.test.LuceeTestCase" { }); } -} \ No newline at end of file +}