diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2022-10-04 22:44:46 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2022-10-04 22:44:46 -0300 |
commit | f0e944696144016ca59aaed02381f7ea9d1ef848 (patch) | |
tree | d9c3232b920e3cd2358c3d91ee5ec5d26cec26a1 /tests/parser_prop.rs | |
parent | 83d575f8a143ba031f1aa43995f6809470b8b15c (diff) |
Initial VM work
Diffstat (limited to 'tests/parser_prop.rs')
-rw-r--r-- | tests/parser_prop.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/parser_prop.rs b/tests/parser_prop.rs index 0b57171..8a4cbeb 100644 --- a/tests/parser_prop.rs +++ b/tests/parser_prop.rs @@ -6,6 +6,6 @@ use proptest::prelude::*; proptest! { #[test] fn doesnt_panic(s in "\\PC*") { - let _ = datafu::Pattern::<Box<dyn erased_serde::Serialize>>::compile::<&str, &str>(&s, None, None); + let _ = datafu::PatternBuilder::for_pattern(&s).compile(); } } |