Skip to content

Commit

Permalink
fix test on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Sep 22, 2017
1 parent 8717454 commit aa797d0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/src/run_test.dart
Expand Up @@ -101,7 +101,9 @@ main() {
expect(json['environment'][k], environment[k]);
}
// Filter out __CF_USER_TEXT_ENCODING.
expect(json['environment'].keys.where((str) => !str.startsWith('__')),
expect(
json['environment'].keys.where(
(str) => (!str.startsWith('__') && !str.startsWith('GLIB'))),
unorderedEquals(environment.keys));
});

Expand Down

0 comments on commit aa797d0

Please sign in to comment.