From 553f1acbedeaf236152d251ac819ce0cd4c32f0b Mon Sep 17 00:00:00 2001 From: Farabi Date: Mon, 24 Feb 2025 15:03:11 +0800 Subject: [PATCH] fix: balance display test case --- src/components/BalanceDisplay/__tests__/BalanceDisplay.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/BalanceDisplay/__tests__/BalanceDisplay.test.tsx b/src/components/BalanceDisplay/__tests__/BalanceDisplay.test.tsx index 27c22cd..f60b30e 100644 --- a/src/components/BalanceDisplay/__tests__/BalanceDisplay.test.tsx +++ b/src/components/BalanceDisplay/__tests__/BalanceDisplay.test.tsx @@ -43,7 +43,7 @@ describe('BalanceDisplay', () => { render(); expect(screen.getByText('Real')).toBeInTheDocument(); - expect(screen.getByText('1,000 USD')).toBeInTheDocument(); // matches combined balance and currency + expect(screen.getByText('10,000 USD')).toBeInTheDocument(); // matches combined balance and currency }); }); }); \ No newline at end of file