Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: packages/crypto/test/hmac_sha256_test.dart

Issue 3015713002: Roll to pickup pool changes
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/crypto/test/hmac_sha1_test.dart ('k') | packages/crypto/test/sha1_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/crypto/test/hmac_sha256_test.dart
diff --git a/packages/crypto/test/hmac_sha256_test.dart b/packages/crypto/test/hmac_sha256_test.dart
index 6c63268433703d610530cf0813c62c60e666c8c8..a707813eac854ac87bc7fb235ad81ea351e5c813 100644
--- a/packages/crypto/test/hmac_sha256_test.dart
+++ b/packages/crypto/test/hmac_sha256_test.dart
@@ -3,13 +3,13 @@
// BSD-style license that can be found in the LICENSE file.
// Library tag to allow the test to run on Dartium.
-import "package:crypto/crypto.dart";
-import "package:test/test.dart";
+import 'package:crypto/crypto.dart';
+import 'package:test/test.dart';
import 'utils.dart';
void main() {
- group("standard vector", () {
+ group('standard vector', () {
for (var i = 0; i < _inputs.length; i++) {
test(_macs[i], () {
expectHmacEquals(sha256, _inputs[i], _keys[i], _macs[i]);
« no previous file with comments | « packages/crypto/test/hmac_sha1_test.dart ('k') | packages/crypto/test/sha1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698