From eaefec405fa9b17ede97073e81f31eabb5db361b Mon Sep 17 00:00:00 2001 From: fartem Date: Fri, 3 Feb 2023 08:20:42 +0300 Subject: [PATCH] 2023-02-02 update: updated "9. Palindrome Number" --- test/easy/palindrome_number_test.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/easy/palindrome_number_test.dart b/test/easy/palindrome_number_test.dart index ec54f4d..e97e3bb 100644 --- a/test/easy/palindrome_number_test.dart +++ b/test/easy/palindrome_number_test.dart @@ -5,10 +5,10 @@ void main() { group( 'Example tests', () { - final ip = Solution(); - test('true', () => expect(true, ip.isPalindrome(121))); - test('false', () => expect(false, ip.isPalindrome(-121))); - test('false', () => expect(false, ip.isPalindrome(10))); + final pn = Solution(); + test('true', () => expect(true, pn.isPalindrome(121))); + test('false', () => expect(false, pn.isPalindrome(-121))); + test('false', () => expect(false, pn.isPalindrome(10))); }, ); }