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

Unified Diff: packages/crypto/test/hmac_md5_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/pubspec.yaml ('k') | packages/crypto/test/hmac_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_md5_test.dart
diff --git a/packages/crypto/test/hmac_md5_test.dart b/packages/crypto/test/hmac_md5_test.dart
index 68fa4733f2d224086240d9cc128f47110881c7ab..49e60f7025e05fb6d6f5b7724b9a4ba94b60a1b6 100644
--- a/packages/crypto/test/hmac_md5_test.dart
+++ b/packages/crypto/test/hmac_md5_test.dart
@@ -2,13 +2,13 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-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(md5, _inputs[i], _keys[i], _macs[i]);
« no previous file with comments | « packages/crypto/pubspec.yaml ('k') | packages/crypto/test/hmac_sha1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698