Skip to content

Commit

Permalink
Revert "Auxiliary commit to revert individual files from bc62a14"
Browse files Browse the repository at this point in the history
This reverts commit c4c1016cb597b9340d1c81ab3816e037a6b97f9e.
  • Loading branch information
rkapka committed Aug 12, 2022
1 parent c596006 commit 89a85b5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/client/builder/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ go_test(
"client_test.go",
"types_test.go",
],
data = glob(["testing/testdata/**"]),
data = glob(["testdata/**"]),
embed = [":go_default_library"],
deps = [
"//config/params:go_default_library",
Expand Down
4 changes: 2 additions & 2 deletions api/client/builder/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ func TestUint256Unmarshal(t *testing.T) {
}

func TestMarshalBlindedBeaconBlockBodyBellatrix(t *testing.T) {
expected, err := os.ReadFile("testing/testdata/blinded-block.json")
expected, err := os.ReadFile("testdata/blinded-block.json")
require.NoError(t, err)
b := &BlindedBeaconBlockBellatrix{BlindedBeaconBlockBellatrix: &eth.BlindedBeaconBlockBellatrix{
Slot: 1,
Expand Down Expand Up @@ -730,7 +730,7 @@ func TestRoundTripProtoUint256(t *testing.T) {
}

func TestExecutionPayloadHeaderRoundtrip(t *testing.T) {
expected, err := os.ReadFile("testing/testdata/execution-payload.json")
expected, err := os.ReadFile("testdata/execution-payload.json")
require.NoError(t, err)
hu := &ExecutionPayloadHeader{}
require.NoError(t, json.Unmarshal(expected, hu))
Expand Down

0 comments on commit 89a85b5

Please sign in to comment.