Skip to content

Commit 6f84a06

Browse files
committed
Fix dartfmt and analyze
1 parent 54bf16f commit 6f84a06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/strings_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ void main() {
140140
});
141141
test('should be circular over many loops starting mid-way loops away', () {
142142
expect(loop('ab', 5, 13), 'babababa');
143-
expect('ab'.loop( 5, 13), 'babababa');
143+
expect('ab'.loop(5, 13), 'babababa');
144144
});
145145
test('should default to end of string', () {
146146
expect(loop('hello', 3), 'lo');
@@ -217,7 +217,7 @@ void main() {
217217
expect('abc'.center(6, '012345'), '0abc45');
218218

219219
expect(center('abc', 9, '01'), '010abc101');
220-
expect('abc'.center(9, '01'), '010abc101');
220+
expect('abc'.center(9, '01'), '010abc101');
221221
});
222222

223223
test('should handle null and empty inputs', () {

0 commit comments

Comments
 (0)