fix details test

This commit is contained in:
Cory LaViska
2025-01-02 13:45:37 -05:00
parent b5410bd542
commit 5f08244bf6

View File

@@ -196,8 +196,8 @@ describe('<wa-details>', () => {
await first.show();
await second.show();
expect(firstBody.clientHeight).to.equal(232); // 200 + 16px + 16px (vertical padding)
expect(secondBody.clientHeight).to.equal(432); // 400 + 16px + 16px (vertical padding)
expect(firstBody.clientHeight).to.equal(200);
expect(secondBody.clientHeight).to.equal(400);
});
});
}