Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod committed Mar 9, 2024
1 parent 1389b93 commit e1fb15d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
package io.optimism.config;

import static org.junit.Assert.assertEquals;

import io.optimism.derive.stages.Attributes;
import java.math.BigInteger;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.web3j.abi.datatypes.generated.Bytes32;
import org.web3j.tuples.generated.Tuple2;
import org.web3j.utils.Numeric;

import java.math.BigInteger;

import static org.junit.Assert.assertEquals;

/**
* The type of SystemConfigTest.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package io.optimism.derive.stages;

import static org.junit.jupiter.api.Assertions.assertEquals;

import java.math.BigInteger;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.web3j.utils.Numeric;

import static org.junit.jupiter.api.Assertions.assertEquals;

/**
* The type AttributesDepositedTest.
*
Expand Down Expand Up @@ -37,9 +37,7 @@ void testEcotoneEncode() {
BigInteger.valueOf(0L),
false);
byte[] bytes = deposited.encodeInEcotone();
Assertions.assertEquals(
TX_INPUT,
Numeric.toHexString(bytes));
Assertions.assertEquals(TX_INPUT, Numeric.toHexString(bytes));
}

@Test
Expand Down

0 comments on commit e1fb15d

Please sign in to comment.