Skip to content

Commit

Permalink
Merge pull request #276 from chimp1984/fix-test
Browse files Browse the repository at this point in the history
Fix test
  • Loading branch information
chimp1984 committed Apr 25, 2022
2 parents 75e8028 + 15f04dc commit de1e255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/test/java/bisq/common/monetary/QuoteTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void testFromMarketPriceOffset() {
Quote quote = Quote.fromMarketPriceOffset(marketQuote, 0);
assertEquals(500000000, quote.getValue());
assertEquals(4, quote.getPrecision());
assertEquals("BTC/USD", quote.getMarket().toString());
assertEquals("BTC/USD", quote.getMarket().getCurrencyCodes());

quote = Quote.fromMarketPriceOffset(marketQuote, 1);
assertEquals(1000000000, quote.getValue());
Expand Down

0 comments on commit de1e255

Please sign in to comment.