Skip to content

Commit

Permalink
Merge pull request #5838 from ripcurlx/fix-broken-test
Browse files Browse the repository at this point in the history
Fix broken test for new build
  • Loading branch information
bisq-github-admin-3 authored Nov 18, 2021
2 parents 4b6b1cd + c64e6f3 commit e52a821
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 e52a821

Please sign in to comment.