Merge pull request #1549 from Kamielvf/ge-sell-buy-cancelled

Show grand exchange offer type on cancelled state
This commit is contained in:
Adam
2018-04-16 22:17:57 -04:00
committed by GitHub
4 changed files with 16 additions and 8 deletions

View File

@@ -45,7 +45,7 @@ public class GrandExchangeOfferSlotTest
@Test
public void testUpdateOffer()
{
when(offer.getState()).thenReturn(GrandExchangeOfferState.CANCELLED);
when(offer.getState()).thenReturn(GrandExchangeOfferState.CANCELLED_BUY);
GrandExchangeOfferSlot offerSlot = new GrandExchangeOfferSlot();
offerSlot.updateOffer(mock(ItemComposition.class), mock(BufferedImage.class), offer);