Skip to content

Commit eaefec4

Browse files
committed
2023-02-02 update: updated "9. Palindrome Number"
1 parent 963bf14 commit eaefec4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/easy/palindrome_number_test.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ void main() {
55
group(
66
'Example tests',
77
() {
8-
final ip = Solution();
9-
test('true', () => expect(true, ip.isPalindrome(121)));
10-
test('false', () => expect(false, ip.isPalindrome(-121)));
11-
test('false', () => expect(false, ip.isPalindrome(10)));
8+
final pn = Solution();
9+
test('true', () => expect(true, pn.isPalindrome(121)));
10+
test('false', () => expect(false, pn.isPalindrome(-121)));
11+
test('false', () => expect(false, pn.isPalindrome(10)));
1212
},
1313
);
1414
}

0 commit comments

Comments
 (0)