From 6f84a0640c26d418f39be4d0fb5bfbb9505ce7d6 Mon Sep 17 00:00:00 2001 From: Michel Feinstein Date: Mon, 10 May 2021 23:25:19 -0300 Subject: [PATCH] Fix dartfmt and analyze --- test/strings_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/strings_test.dart b/test/strings_test.dart index fdfdb4a5..3115d3ac 100644 --- a/test/strings_test.dart +++ b/test/strings_test.dart @@ -140,7 +140,7 @@ void main() { }); test('should be circular over many loops starting mid-way loops away', () { expect(loop('ab', 5, 13), 'babababa'); - expect('ab'.loop( 5, 13), 'babababa'); + expect('ab'.loop(5, 13), 'babababa'); }); test('should default to end of string', () { expect(loop('hello', 3), 'lo'); @@ -217,7 +217,7 @@ void main() { expect('abc'.center(6, '012345'), '0abc45'); expect(center('abc', 9, '01'), '010abc101'); - expect('abc'.center(9, '01'), '010abc101'); + expect('abc'.center(9, '01'), '010abc101'); }); test('should handle null and empty inputs', () {