Skip to content

Commit a4dedbd

Browse files
committed
fuzzer: fix build after PR 2127
1 parent adc984a commit a4dedbd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/test/fuzzer_diagnostics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void print_stack_trace() {
5656
}
5757

5858
using namespace silkworm::rpc::json_rpc;
59-
using namespace silkworm::rpc::test;
59+
using namespace silkworm::rpc::test_util;
6060

6161
int main(int argc, char* argv[]) {
6262
CLI::App app{"Debug or rerun a single fuzzer test"};

cmd/test/fuzzer_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include "address_sanitizer_fix.hpp"
2424

2525
using namespace silkworm::rpc::json_rpc;
26-
using namespace silkworm::rpc::test;
26+
using namespace silkworm::rpc::test_util;
2727

2828
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
2929
const auto request = std::string(reinterpret_cast<const char*>(Data), Size);

0 commit comments

Comments
 (0)