Skip to content

Commit

Permalink
update test to reflect that order of policy card choices was flipped
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredgalanis committed Dec 7, 2022
1 parent d346dd9 commit 507edf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/components/policy-card-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ module('Integration | Component | policy card', (hooks) => {
assert.equal(inputs.length, 2, `Found ${inputs.length} inputs, but was expecting 2`);

// Select option to remove this policy
await click(inputs[0]);
await click(inputs[1]);

const effectivePolicies = get(this, 'submission.effectivePolicies');
assert.equal(effectivePolicies.length, 0, 'Should be ZERO effective policies');
Expand Down

0 comments on commit 507edf6

Please sign in to comment.