| 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]);
|
|
|