Skip to content

Commit

Permalink
Fix the test covering space-separated list to actually do it (#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
stof authored Sep 7, 2021
1 parent f098c7f commit 49c75b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/dart_api/value/list_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void main() {
});

test("a space-separated list is space-separated", () {
expect(parseValue("a, b, c").separator, equals(ListSeparator.comma));
expect(parseValue("a b c").separator, equals(ListSeparator.space));
});

test("a bracketed list has brackets", () {
Expand Down

0 comments on commit 49c75b1

Please sign in to comment.