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

Unified Diff: packages/crypto/test/hmac_sha1_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_md5_test.dart ('k') | packages/crypto/test/hmac_sha256_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/crypto/test/hmac_sha1_test.dart
diff --git a/packages/crypto/test/hmac_sha1_test.dart b/packages/crypto/test/hmac_sha1_test.dart
index 28eec21f98084c9b9469afc72534760b1470eb23..c80b11505467663bb6dd448c0c0053506813ba34 100644
--- a/packages/crypto/test/hmac_sha1_test.dart
+++ b/packages/crypto/test/hmac_sha1_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(sha1, _inputs[i], _keys[i], _macs[i]);
« no previous file with comments | « packages/crypto/test/hmac_md5_test.dart ('k') | packages/crypto/test/hmac_sha256_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698