diff options
author | 2024-02-16 18:41:16 +0700 | |
---|---|---|
committer | 2024-02-16 11:41:16 +0000 | |
commit | 5ff288f61b51f9c5f0d8cc9ebd371a8d881c68fd (patch) | |
tree | 88ea7f2502e989a430f4a0fee55ebd163b45a7c2 /packages/astro-rss/test/pagesGlobToRssItems.test.js | |
parent | 7bdcfb750ae5e8a9e2a0ee68c7ac03b82215d08f (diff) | |
download | astro-5ff288f61b51f9c5f0d8cc9ebd371a8d881c68fd.tar.gz astro-5ff288f61b51f9c5f0d8cc9ebd371a8d881c68fd.tar.zst astro-5ff288f61b51f9c5f0d8cc9ebd371a8d881c68fd.zip |
chore: Change `strictEqual` to `equal` (#10140)
Diffstat (limited to 'packages/astro-rss/test/pagesGlobToRssItems.test.js')
-rw-r--r-- | packages/astro-rss/test/pagesGlobToRssItems.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro-rss/test/pagesGlobToRssItems.test.js b/packages/astro-rss/test/pagesGlobToRssItems.test.js index b590daa38..e3da7351b 100644 --- a/packages/astro-rss/test/pagesGlobToRssItems.test.js +++ b/packages/astro-rss/test/pagesGlobToRssItems.test.js @@ -47,7 +47,7 @@ describe('pagesGlobToRssItems', () => { }, ]; - assert.deepStrictEqual( + assert.deepEqual( items.sort((a, b) => a.pubDate - b.pubDate), expected ); |