From 0ee43edb8a39ca7bce32c252c55ae59d312f69ab Mon Sep 17 00:00:00 2001 From: androm3da Date: Sat, 16 Dec 2017 13:16:35 -0600 Subject: [PATCH] Fix expected result for Balance --- rai/qt_test/qt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rai/qt_test/qt.cpp b/rai/qt_test/qt.cpp index 69d7101f6f..7d14dd252a 100644 --- a/rai/qt_test/qt.cpp +++ b/rai/qt_test/qt.cpp @@ -59,7 +59,7 @@ TEST (wallet, startup_balance) wallet_l->insert_adhoc (key.prv); auto wallet (std::make_shared (*test_application, processor, *system.nodes [0], wallet_l, key.pub)); wallet->start (); - ASSERT_EQ ("Balance: 0", wallet->self.balance_label->text().toStdString ()); + ASSERT_EQ ("Balance (XRB): 0", wallet->self.balance_label->text().toStdString ()); } TEST (wallet, select_account)