File tree 1 file changed +5
-6
lines changed
validator/remote/src/integration-test/java/tech/pegasys/teku/validator/remote/typedef
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 40
40
import org .junit .jupiter .params .provider .ValueSource ;
41
41
import tech .pegasys .teku .api .exceptions .RemoteServiceNotAvailableException ;
42
42
import tech .pegasys .teku .api .response .v1 .beacon .ValidatorStatus ;
43
- import tech .pegasys .teku .api .schema .BLSPubKey ;
44
43
import tech .pegasys .teku .ethereum .json .types .beacon .StateValidatorData ;
45
44
import tech .pegasys .teku .infrastructure .ssz .SszDataAssert ;
46
45
import tech .pegasys .teku .infrastructure .ssz .SszList ;
@@ -385,7 +384,7 @@ public void postValidators_WhenSuccess_ReturnsResponse() throws JsonProcessingEx
385
384
okHttpValidatorTypeDefClient .postStateValidators (List .of ("1" , "2" ));
386
385
387
386
assertThat (result ).isPresent ();
388
- assertThat (result .get ()).usingRecursiveComparison (). isEqualTo (expected );
387
+ assertThat (result .get ()).isEqualTo (expected );
389
388
}
390
389
391
390
private StateValidatorData generateStateValidatorData () {
@@ -401,10 +400,10 @@ private StateValidatorData generateStateValidatorData() {
401
400
FAR_FUTURE_EPOCH ,
402
401
FAR_FUTURE_EPOCH );
403
402
return new StateValidatorData (
404
- UInt64 .valueOf (index ),
405
- dataStructureUtil .randomUInt64 (),
406
- ValidatorStatus .active_ongoing ,
407
- validator );
403
+ UInt64 .valueOf (index ),
404
+ dataStructureUtil .randomUInt64 (),
405
+ ValidatorStatus .active_ongoing ,
406
+ validator );
408
407
}
409
408
410
409
private void verifyRegisterValidatorsPostRequest (
You can’t perform that action at this time.
0 commit comments