Skip to content

Commit

Permalink
fix(tests): Fix dial-in check for pin, can be 8 digits.
Browse files Browse the repository at this point in the history
  • Loading branch information
damencho committed Jan 23, 2025
1 parent de84853 commit 277a85b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/specs/alone/dialInAudio.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('Dial-In', () => {
console.error('dial-in.test.no-pin');
}

expect(dialInPin.length >= 9).toBe(true);
expect(dialInPin.length >= 8).toBe(true);

ctx.dialInPin = dialInPin;
});
Expand Down

0 comments on commit 277a85b

Please sign in to comment.