From 955723e6cde8efe7cf3501e8eb4f847f6f842c43 Mon Sep 17 00:00:00 2001 From: Sudipto Chandra Date: Sat, 25 Apr 2026 08:50:30 +0400 Subject: [PATCH] Apply suggested fix to test/xsalsa20_test.dart from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- test/xsalsa20_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/xsalsa20_test.dart b/test/xsalsa20_test.dart index c8b6290..e9eca54 100644 --- a/test/xsalsa20_test.dart +++ b/test/xsalsa20_test.dart @@ -68,7 +68,7 @@ void main() { expect(algo.subnonce, equals([1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2])); }); - test('random nonce is used if nonce is null, ', () { + test('random nonce is used if nonce is null', () { var key = randomNumbers(32); var text = randomBytes(100); xsalsa20(text, key);