Skip to content

Commit

Permalink
Merge pull request #44 from flavio/refactor-required-to-fix-tutorial
Browse files Browse the repository at this point in the history
Fix online tutorial
  • Loading branch information
flavio authored Nov 15, 2023
2 parents 2f78c59 + 25b0de7 commit b4cb570
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ mod tests {
name: String::from("Valid name"),
fixture_file: String::from(request_file),
expected_validation_result: true,
settings: Settings {},
settings: Settings::default(),
};

let res = tc.eval(validate).unwrap();
Expand All @@ -97,7 +97,7 @@ mod tests {
name: String::from("Bad name"),
fixture_file: String::from(request_file),
expected_validation_result: false,
settings: Settings {},
settings: Settings::default(),
};

let res = tc.eval(validate).unwrap();
Expand All @@ -117,7 +117,7 @@ mod tests {
name: String::from("Ingress creation"),
fixture_file: String::from(request_file),
expected_validation_result: true,
settings: Settings {},
settings: Settings::default(),
};

let res = tc.eval(validate).unwrap();
Expand Down

0 comments on commit b4cb570

Please sign in to comment.