From 8d4ec9f0c57a156aedce8746d9759309cdb29bc5 Mon Sep 17 00:00:00 2001 From: Mitja Belak Date: Fri, 1 Nov 2024 11:54:39 +0100 Subject: [PATCH] Boss color change + random test was crying --- app/src/styles/Info.module.css | 10 +++++----- test/RaidGeldUtils.t.sol | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/src/styles/Info.module.css b/app/src/styles/Info.module.css index 440b4de..b24f79f 100644 --- a/app/src/styles/Info.module.css +++ b/app/src/styles/Info.module.css @@ -29,17 +29,17 @@ color: #9b215e; } & > .boss3 { - color: #ebb638; - } - & > .boss4 { color: #c6282e; } - & > .boss5 { + & > .boss4 { color: #d06b53; } - & > .boss6 { + & > .boss5 { color: #8f968f; } + & > .boss6 { + color: #ebb638; + } } & small { opacity: 0.7; diff --git a/test/RaidGeldUtils.t.sol b/test/RaidGeldUtils.t.sol index 760dc66..341a6f9 100644 --- a/test/RaidGeldUtils.t.sol +++ b/test/RaidGeldUtils.t.sol @@ -111,7 +111,7 @@ contract raid_geldTest is Test, Constants { function test_22_random_range(uint256 min, uint256 max) public { vm.assume(max > min); - vm.assume(max - min < 100); + vm.assume(max - min < 200); vm.assume(max < type(uint256).max); uint256 range = max - min + 1; bool[] memory seen = new bool[](range);