You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change Ton asset symbol from "TON" to "GRAM" in core primitives and update Android test mock accordingly; add a unit test for the Ton asset. Simplify and modernize several Rust test files: replace vec![..] usage with arrays for iterator construction, replace boolean match arms with matches! and assert! style assertions, and collapse a concatenated Solana test string into a single literal. These edits are test-focused refactors and a naming correction to keep asset metadata consistent.
Copy file name to clipboardExpand all lines: android/data/coordinators/src/test/kotlin/com/gemwallet/android/data/coordinators/transaction/TransactionDetailsAggregateImplTest.kt
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -56,8 +56,8 @@ class TransactionDetailsAggregateImplTest {
56
56
57
57
privateval tonAsset = mockAsset(
58
58
chain =Chain.Ton,
59
-
name ="Toncoin",
60
-
symbol ="TON",
59
+
name ="TON",
60
+
symbol ="GRAM",
61
61
decimals =9,
62
62
)
63
63
@@ -214,7 +214,7 @@ class TransactionDetailsAggregateImplTest {
0 commit comments