Skip to content

Commit d4eccc6

Browse files
committed
Fixed linting issue
1 parent d29b77a commit d4eccc6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/src/kex/kex_nist_test.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,10 @@ void main() {
6161
final kex = SSHKexNist.p256();
6262
final privateKey = kex.privateKey;
6363

64-
expect(privateKey, isNot(equals(BigInt.zero)), reason: 'Private key should not be zero.');
65-
expect(privateKey < kex.curve.n, isTrue, reason: 'Private key should be less than curve order.');
64+
expect(privateKey, isNot(equals(BigInt.zero)),
65+
reason: 'Private key should not be zero.');
66+
expect(privateKey < kex.curve.n, isTrue,
67+
reason: 'Private key should be less than curve order.');
6668
});
6769
});
6870
}

0 commit comments

Comments
 (0)