We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa5efa4 commit e00b5e7Copy full SHA for e00b5e7
test/medium/8.string_to_integer_atoi.test.dart
@@ -2,7 +2,7 @@ import 'package:leetcode/src/medium/8.string_to_integer_atoi/main.dart';
2
import 'package:test/test.dart';
3
4
void main() {
5
- group('longest_palindromic_substring', () {
+ group('string_to_integer_atoi', () {
6
final f = Solution().myAtoi;
7
8
test('f("")', () {
@@ -40,5 +40,5 @@ void main() {
40
test('f("+4193 with words")', () {
41
expect(f('+4193 with words'), equals(4193));
42
});
43
- }); // group 'longest_palindromic_substring'
+ }); // group 'string_to_integer_atoi'
44
}
0 commit comments