Skip to content

Commit

Permalink
Fix broken test for new build
Browse files Browse the repository at this point in the history
  • Loading branch information
ripcurlx committed Nov 18, 2021
1 parent 4b6b1cd commit 4341114
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package bisq.desktop.util;

import bisq.core.locale.GlobalSettings;
import bisq.core.locale.Res;
import bisq.core.monetary.Volume;
import bisq.core.offer.Offer;
Expand Down Expand Up @@ -32,7 +33,8 @@ public class DisplayUtilsTest {

@Before
public void setUp() {
Locale.setDefault(new Locale("en", "US"));
Locale.setDefault(Locale.US);
GlobalSettings.setLocale(Locale.US);
Res.setBaseCurrencyCode("BTC");
Res.setBaseCurrencyName("Bitcoin");
}
Expand Down

0 comments on commit 4341114

Please sign in to comment.