File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
rbac-registration/src/cardano/cip509/utils Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11VERSION 0.8
22
3- IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.2.23 AS rust-ci
3+ IMPORT github.com/input-output-hk/catalyst-ci/earthly/rust:v3.2.25 AS rust-ci
44
55COPY_SRC :
66 FUNCTION
Original file line number Diff line number Diff line change 11allow-unwrap-in-tests = true
22allow-expect-in-tests = true
3+ allow-panic-in-tests = true
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ mod tests {
107107
108108 for uri in test_uris {
109109 let err = format ! ( "{:?}" , Cip0134Uri :: parse( uri) . expect_err( uri) ) ;
110- assert_eq ! ( "Missing schema part of URI" , err ) ;
110+ assert ! ( err . starts_with ( "Missing schema part of URI" ) ) ;
111111 }
112112 }
113113
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ max_width = 100
3636
3737# Comments:
3838normalize_comments = true
39- normalize_doc_attributes = true
39+ normalize_doc_attributes = false
4040wrap_comments = true
4141comment_width = 90 # small excess is okay but prefer 80
4242format_code_in_doc_comments = true
You can’t perform that action at this time.
0 commit comments