Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/06-Practicing-Rules/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe("All the styles should be applied", () => {
let h2TagStyles = window.getComputedStyle(h2Tag);
expect(h2TagStyles["text-decoration"]).toBe("underline");
});
test("The padding in the #id1 tag should be '5px'", () => {
test("The padding in the p tag should be '5px'", () => {
document.querySelector(
"head"
).innerHTML = `<style>${css.toString()}</style>`;
Expand Down