| Index: dart/tests/lib/crypto/hmac_sha256_test.dart
|
| diff --git a/dart/tests/lib/crypto/hmac_sha256_test.dart b/dart/tests/lib/crypto/hmac_sha256_test.dart
|
| index 1156bbde9e0b2bd291043709b9e53c269a6bf722..a6b2768c6474da592430ac78aa0d1b35dd7e065a 100644
|
| --- a/dart/tests/lib/crypto/hmac_sha256_test.dart
|
| +++ b/dart/tests/lib/crypto/hmac_sha256_test.dart
|
| @@ -3,11 +3,11 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| // Library tag to allow the test to run on Dartium.
|
| -library hmac_sha256_test;
|
| +#library('hmac_sha256_test');
|
|
|
| -import "dart:crypto";
|
| +#import("dart:crypto");
|
|
|
| -part 'hmac_sha256_test_vectors.dart';
|
| +#source('hmac_sha256_test_vectors.dart');
|
|
|
| void testStandardVectors(inputs, keys, macs) {
|
| for (var i = 0; i < inputs.length; i++) {
|
|
|