Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
faboweb committed Jan 8, 2024
1 parent e1db4f5 commit 9635ffd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/staking/src/tests/unstake_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ mod staking_tests {
unstake_requests
.batches
.iter()
.filter(|v| v.status == "Received")
.filter(|v| v.status == "received")
.count(),
0
);
Expand Down Expand Up @@ -451,7 +451,7 @@ mod staking_tests {
unstake_requests
.batches
.iter()
.filter(|v| v.status == "Received")
.filter(|v| v.status == "received")
.count(),
1
);
Expand Down

0 comments on commit 9635ffd

Please sign in to comment.