We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e82adc0 commit 5ba65deCopy full SHA for 5ba65de
crates/apollo_compile_to_casm/src/compile_test.rs
@@ -162,7 +162,7 @@ fn test_max_memory_usage() {
162
audited_libfuncs_only: false,
163
});
164
let compilation_result = compiler.compile(contract_class);
165
- let expected_error_pattern = Regex::new(r"memory allocation .* fail").unwrap();
+ let expected_error_pattern = Regex::new(r"memory allocation .*fail").unwrap();
166
assert_matches!(compilation_result, Err(CompilationUtilError::CompilationError(string))
167
if expected_error_pattern.is_match(&string)
168
);
0 commit comments