aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz/span.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/fuzz/span.cpp')
-rw-r--r--src/test/fuzz/span.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/fuzz/span.cpp b/src/test/fuzz/span.cpp
index 8f753948df..cd436d582f 100644
--- a/src/test/fuzz/span.cpp
+++ b/src/test/fuzz/span.cpp
@@ -30,10 +30,4 @@ FUZZ_TARGET(span)
(void)span.subspan(idx, span.size() - idx);
(void)span[idx];
}
-
- std::string another_str = fuzzed_data_provider.ConsumeBytesAsString(32);
- const Span<const char> another_span{another_str};
- assert((span <= another_span) != (span > another_span));
- assert((span == another_span) != (span != another_span));
- assert((span >= another_span) != (span < another_span));
}