Skip to content

Commit

Permalink
gaz
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Sep 18, 2024
1 parent 0c50978 commit b49bba3
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 22 deletions.
2 changes: 1 addition & 1 deletion api/db/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ go_library(

go_test(
name = "db_test",
size = "small",
srcs = ["db_test.go"],
embed = [":db"],
deps = [
Expand All @@ -32,5 +33,4 @@ go_test(
"@com_github_mattn_go_sqlite3//:go-sqlite3",
"@com_github_stretchr_testify//require",
],
size = "small",
)
2 changes: 1 addition & 1 deletion assertions/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ go_library(

go_test(
name = "assertions_test",
size = "small",
srcs = [
"manager_test.go",
"poster_test.go",
Expand All @@ -57,5 +58,4 @@ go_test(
"@com_github_ethereum_go_ethereum//common",
"@com_github_stretchr_testify//require",
],
size = "small",
)
2 changes: 1 addition & 1 deletion chain-abstraction/sol-implementation/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ go_library(

go_test(
name = "sol-implementation_test",
size = "small",
srcs = [
"assertion_chain_helper_test.go",
"assertion_chain_test.go",
Expand Down Expand Up @@ -69,5 +70,4 @@ go_test(
"@com_github_ethereum_go_ethereum//core/types",
"@com_github_stretchr_testify//require",
],
size = "small",
)
2 changes: 1 addition & 1 deletion challenge-manager/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ go_library(

go_test(
name = "challenge-manager_test",
size = "small",
srcs = ["manager_test.go"],
embed = [":challenge-manager"],
deps = [
Expand All @@ -56,5 +57,4 @@ go_test(
"@com_github_ethereum_go_ethereum//common",
"@com_github_stretchr_testify//require",
],
size = "small",
)
2 changes: 1 addition & 1 deletion challenge-manager/chain-watcher/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ go_library(

go_test(
name = "chain-watcher_test",
size = "small",
srcs = ["watcher_test.go"],
embed = [":chain-watcher"],
deps = [
Expand All @@ -39,5 +40,4 @@ go_test(
"@com_github_ethereum_go_ethereum//common",
"@com_github_stretchr_testify//require",
],
size = "small",
)
2 changes: 1 addition & 1 deletion challenge-manager/challenge-tree/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ go_library(

go_test(
name = "challenge-tree_test",
size = "small",
srcs = [
"ancestors_test.go",
"compute_ancestors_test.go",
Expand All @@ -45,5 +46,4 @@ go_test(
"@com_github_ethereum_go_ethereum//common",
"@com_github_stretchr_testify//require",
],
size = "small",
)
2 changes: 1 addition & 1 deletion containers/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ go_library(

go_test(
name = "containers_test",
size = "small",
srcs = ["slice_test.go"],
embed = [":containers"],
deps = ["@com_github_stretchr_testify//require"],
size = "small",
)
2 changes: 1 addition & 1 deletion containers/events/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ go_library(

go_test(
name = "events_test",
size = "small",
srcs = ["producer_test.go"],
embed = [":events"],
deps = ["@com_github_stretchr_testify//require"],
size = "small",
)
2 changes: 1 addition & 1 deletion containers/fsm/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ go_library(

go_test(
name = "fsm_test",
size = "small",
srcs = ["fsm_test.go"],
embed = [":fsm"],
deps = ["@com_github_stretchr_testify//require"],
size = "small",
)
2 changes: 1 addition & 1 deletion containers/threadsafe/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ go_library(

go_test(
name = "threadsafe_test",
size = "small",
srcs = [
"collections_test.go",
"map_test.go",
Expand All @@ -28,5 +29,4 @@ go_test(
],
embed = [":threadsafe"],
deps = ["@com_github_stretchr_testify//require"],
size = "small",
)
2 changes: 1 addition & 1 deletion layer2-state-provider/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ go_library(

go_test(
name = "layer2-state-provider_test",
size = "small",
srcs = ["history_commitment_provider_test.go"],
embed = [":layer2-state-provider"],
deps = [
"//containers/option",
"@com_github_stretchr_testify//require",
],
size = "small",
)
2 changes: 1 addition & 1 deletion math/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ go_library(

go_test(
name = "math_test",
size = "small",
srcs = ["math_test.go"],
embed = [":math"],
deps = ["@com_github_stretchr_testify//require"],
size = "small",
)
2 changes: 1 addition & 1 deletion runtime/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ go_library(

go_test(
name = "runtime_test",
size = "small",
srcs = ["retry_test.go"],
embed = [":runtime"],
deps = ["@com_github_stretchr_testify//require"],
size = "small",
)
2 changes: 1 addition & 1 deletion state-commitments/history/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ go_library(

go_test(
name = "history_test",
size = "small",
srcs = ["commitments_test.go"],
embed = [":history"],
deps = [
"//state-commitments/inclusion-proofs",
"@com_github_ethereum_go_ethereum//common",
"@com_github_stretchr_testify//require",
],
size = "small",
)
2 changes: 1 addition & 1 deletion state-commitments/inclusion-proofs/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ go_library(

go_test(
name = "inclusion-proofs_test",
size = "small",
srcs = ["inclusion_proofs_test.go"],
embed = [":inclusion-proofs"],
deps = [
"//state-commitments/prefix-proofs",
"@com_github_ethereum_go_ethereum//common",
"@com_github_stretchr_testify//require",
],
size = "small",
)
5 changes: 1 addition & 4 deletions state-commitments/optimized/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ go_library(

go_test(
name = "optimized_test",
srcs = [
"history_commitment_test.go",
"inclusion_proofs_test.go",
],
srcs = ["history_commitment_test.go"],
embed = [":optimized"],
deps = [
"//containers/option",
Expand Down
2 changes: 1 addition & 1 deletion state-commitments/prefix-proofs/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ go_library(

go_test(
name = "prefix-proofs_test",
size = "small",
srcs = [
"merkle_expansions_test.go",
"prefix_proofs_test.go",
Expand All @@ -36,5 +37,4 @@ go_test(
"@com_github_ethereum_go_ethereum//ethclient/simulated",
"@com_github_stretchr_testify//require",
],
size = "small",
)
2 changes: 1 addition & 1 deletion testing/mocks/state-provider/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ go_library(

go_test(
name = "state-provider_test",
size = "small",
srcs = [
"execution_engine_test.go",
"history_provider_test.go",
Expand All @@ -39,5 +40,4 @@ go_test(
"@com_github_ethereum_go_ethereum//crypto",
"@com_github_stretchr_testify//require",
],
size = "small",
)
2 changes: 1 addition & 1 deletion time/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ go_library(

go_test(
name = "time_test",
size = "small",
srcs = ["time_reference_test.go"],
embed = [":time"],
size = "small",
)

0 comments on commit b49bba3

Please sign in to comment.