Skip to content

Commit 5968b35

Browse files
committed
Changes timeout of a test that fails in Github Actions.
1 parent fbe3321 commit 5968b35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cryptography/test/algorithms/pbkdf2_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,10 @@ void _main() {
165165
);
166166
});
167167

168-
test('deriveKey(...): Hmac(sha256), 10k iterations in 100ms', () async {
168+
test('deriveKey(...): Hmac(sha256), 10k iterations in 300ms', () async {
169169
final macAlgorithm = Hmac.sha256();
170170
final n = 10 * 1000;
171-
const maxDuration = Duration(milliseconds: 100);
171+
const maxDuration = Duration(milliseconds: 300);
172172

173173
final pbkdf2 = Pbkdf2(
174174
macAlgorithm: macAlgorithm,

0 commit comments

Comments
 (0)