Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ascorbic committed Nov 13, 2024
1 parent 7977882 commit dc657fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/astro/test/units/dev/collections-renderentry.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe('Content Collections - render()', () => {
assert.equal($('ul li').length, 3);

// Rendered the styles
assert.equal($('style').length, 2);
assert.equal($('style').length, 3);
},
);
});
Expand Down Expand Up @@ -158,7 +158,7 @@ describe('Content Collections - render()', () => {
assert.equal($('ul li').length, 3);

// Rendered the styles
assert.equal($('style').length, 2);
assert.equal($('style').length, 3);
},
);
});
Expand Down Expand Up @@ -225,7 +225,7 @@ describe('Content Collections - render()', () => {
assert.equal($('ul li').length, 3);

// Rendered the styles
assert.equal($('style').length, 2);
assert.equal($('style').length, 3);
},
);
});
Expand Down Expand Up @@ -291,7 +291,7 @@ describe('Content Collections - render()', () => {
assert.equal($('ul li').length, 3);

// Rendered the styles
assert.equal($('style').length, 2);
assert.equal($('style').length, 3);
},
);
});
Expand Down

0 comments on commit dc657fd

Please sign in to comment.