Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles committed Jul 25, 2024
1 parent 4cb2777 commit dcf4fcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/integration_tests/src/gated_group_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use testing::rng::random_string;
use types::{AccessGate, CompositeGate, GateCheckFailedReason, Rules, TokenBalanceGate};

#[test_case(true, false; "diamond_member")]
#[test_case(false; false, "not_diamond_member")]
#[test_case(false; true, "is_invited")]
#[test_case(false, false; "not_diamond_member")]
#[test_case(false, true; "is_invited")]
fn public_group_diamond_member_gate_check(is_diamond: bool, is_invited: bool) {
let mut wrapper = ENV.deref().get();
let TestEnv {
Expand Down

0 comments on commit dcf4fcb

Please sign in to comment.