diff options
author | 2024-07-03 23:04:29 +0100 | |
---|---|---|
committer | 2024-07-03 23:04:29 +0100 | |
commit | 825c502d0f90bf5b994d747e2c7a63f1c5d803ef (patch) | |
tree | ade5a4862528be6c281571527a9b2ee089b471c2 | |
parent | Remove unnecessary debug logging from TimeZone (diff) |
Update test to reflect new green
-rw-r--r-- | src/tests/components/FormListing.test.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/components/FormListing.test.tsx b/src/tests/components/FormListing.test.tsx index 2116e48..259fe23 100644 --- a/src/tests/components/FormListing.test.tsx +++ b/src/tests/components/FormListing.test.tsx @@ -62,7 +62,7 @@ test("renders form listing with background green colour for open", () => { if (elem) { const style = window.getComputedStyle(elem); - expect(style.backgroundColor).toBe("rgb(67, 181, 129)"); + expect(style.backgroundColor).toBe("rgb(55, 128, 94)"); } }); |