Avoid duplicate test run

This commit is contained in:
ghubstan 2021-06-15 13:22:07 -03:00
parent bc1576efbc
commit a3ea4ecbf6
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -31,6 +31,7 @@ import java.math.BigDecimal;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.MethodOrderer;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Test;
@ -53,7 +54,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
import static protobuf.OfferPayload.Direction.BUY;
import static protobuf.OfferPayload.Direction.SELL;
// @Disabled
@Disabled
@Slf4j
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
public class CreateOfferUsingMarketPriceMarginTest extends AbstractOfferTest {