forked from mico/idle_moloch
Boss color change + random test was crying
This commit is contained in:
parent
030dc849c6
commit
8d4ec9f0c5
@ -29,17 +29,17 @@
|
|||||||
color: #9b215e;
|
color: #9b215e;
|
||||||
}
|
}
|
||||||
& > .boss3 {
|
& > .boss3 {
|
||||||
color: #ebb638;
|
|
||||||
}
|
|
||||||
& > .boss4 {
|
|
||||||
color: #c6282e;
|
color: #c6282e;
|
||||||
}
|
}
|
||||||
& > .boss5 {
|
& > .boss4 {
|
||||||
color: #d06b53;
|
color: #d06b53;
|
||||||
}
|
}
|
||||||
& > .boss6 {
|
& > .boss5 {
|
||||||
color: #8f968f;
|
color: #8f968f;
|
||||||
}
|
}
|
||||||
|
& > .boss6 {
|
||||||
|
color: #ebb638;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
& small {
|
& small {
|
||||||
opacity: 0.7;
|
opacity: 0.7;
|
||||||
|
|||||||
@ -111,7 +111,7 @@ contract raid_geldTest is Test, Constants {
|
|||||||
|
|
||||||
function test_22_random_range(uint256 min, uint256 max) public {
|
function test_22_random_range(uint256 min, uint256 max) public {
|
||||||
vm.assume(max > min);
|
vm.assume(max > min);
|
||||||
vm.assume(max - min < 100);
|
vm.assume(max - min < 200);
|
||||||
vm.assume(max < type(uint256).max);
|
vm.assume(max < type(uint256).max);
|
||||||
uint256 range = max - min + 1;
|
uint256 range = max - min + 1;
|
||||||
bool[] memory seen = new bool[](range);
|
bool[] memory seen = new bool[](range);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user