Skip to content

Commit

Permalink
rename add -> add_sub
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejka committed Jun 4, 2024
1 parent c7de280 commit 9cc86b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fuzz/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: fuzz-add fuzz-div fuzz-mul fuzz-conversions

fuzz-add:
cargo +nightly fuzz run add_fuzzer --fuzz-dir=./felt
fuzz-add_sub:
cargo +nightly fuzz run add_sub_fuzzer --fuzz-dir=./felt

fuzz-div:
cargo +nightly fuzz run div_fuzzer --fuzz-dir=./felt
Expand Down
4 changes: 2 additions & 2 deletions fuzz/felt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ num-traits = "0.2.18"
lambdaworks-math = { version = "0.7.0", default-features = false }

[[bin]]
name = "add_fuzzer"
path = "fuzz_targets/add.rs"
name = "add_sub_fuzzer"
path = "fuzz_targets/add_sub.rs"
test = false
doc = false

Expand Down
File renamed without changes.

0 comments on commit 9cc86b1

Please sign in to comment.