Skip to content

Commit 6d3dfa3

Browse files
committed
🎨 Fixing formatting
1 parent 4de7603 commit 6d3dfa3

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

test/test_options/value_with_test_options_test.dart

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ void main() {
66
final TestOptions testOptions = TestOptions();
77

88
group('description tests', () {
9-
test('ValueWithTestOptions with only String values are wrapped with \'quotes\'', () {
9+
test(
10+
'ValueWithTestOptions with only String values are wrapped with \'quotes\'',
11+
() {
1012
final result = ValueWithTestOptions(
1113
['a', 'b', '', ' '],
1214
testOptions,
@@ -15,15 +17,17 @@ void main() {
1517
expect(result, "[ 'a', 'b', '', ' ' ]");
1618
});
1719

18-
test('ValueWithTestOptions with mixed types only String values are wrapped with \'quotes\'', () {
20+
test(
21+
'ValueWithTestOptions with mixed types only String values are wrapped with \'quotes\'',
22+
() {
1923
final result = ValueWithTestOptions(
2024
['a', 'b', '', ' ', 1, 1.5, true, _ClassWithToString()],
2125
testOptions,
2226
).description;
2327

24-
expect(result, "[ 'a', 'b', '', ' ', 1, 1.5, true, class with toString ]");
28+
expect(
29+
result, "[ 'a', 'b', '', ' ', 1, 1.5, true, class with toString ]");
2530
});
26-
2731
});
2832
}
2933

0 commit comments

Comments
 (0)