| Index: tests/standalone/io/zlib_test.dart
|
| diff --git a/tests/standalone/io/zlib_test.dart b/tests/standalone/io/zlib_test.dart
|
| index fff749a5bb5dbd7cc7898b3a3647df6a6b60c487..b637db476e8f48f35335e3b6e9dd9af6810595cd 100644
|
| --- a/tests/standalone/io/zlib_test.dart
|
| +++ b/tests/standalone/io/zlib_test.dart
|
| @@ -58,9 +58,11 @@ void testZLibDeflateGZip() {
|
| return buffer;
|
| })
|
| .then((data) {
|
| - Expect.listEquals([31, 139, 8, 0, 0, 0, 0, 0, 0, 3, 98, 96, 100, 98,
|
| - 102, 97, 101, 99, 231, 224, 4, 0, 0, 0, 255, 255],
|
| - data);
|
| + Expect.equals(26, data.length);
|
| + Expect.listEquals([98, 96, 100, 98, 102, 97, 101, 99, 231, 224, 4, 0, 0,
|
| + 0, 255, 255],
|
| + // Skip header, as it can change.
|
| + data.getRange(10, 16));
|
| port.close();
|
| });
|
| controller.add(data);
|
|
|