| Index: test/utils.dart
|
| diff --git a/test/utils.dart b/test/utils.dart
|
| index 82b9f8a5f4bcb1b23c0c17c2a036173ab71b7445..dee342a1d27cf64e87d4fd7e39f93777f29e561c 100644
|
| --- a/test/utils.dart
|
| +++ b/test/utils.dart
|
| @@ -10,6 +10,6 @@ import 'package:test/test.dart';
|
|
|
| /// Asserts that an HMAC using [hash] returns [mac] for [input] and [key].
|
| void expectHmacEquals(Hash hash, List<int> input, List<int> key, String mac) {
|
| - var hmac = new HMAC(hash, key);
|
| + var hmac = new Hmac(hash, key);
|
| expect(hmac.convert(input).toString(), startsWith(mac));
|
| }
|
|
|