Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
ekr-cfa committed Dec 17, 2024
1 parent 6091b36 commit 35f0173
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/people.rs
Original file line number Diff line number Diff line change
@@ -1253,7 +1253,7 @@ impl ContextPeopleExt for Context {

match selected {
Some(person) => Ok(person),
None => Err(IxaError::IxaError(String::from("No matching people")))
None => Err(IxaError::IxaError(String::from("No matching people"))),
}
}
}
@@ -2207,7 +2207,7 @@ mod test {
context.sample_person(SampleRng2, (Age, 50)),
Err(IxaError::IxaError(_))
));

// See that the simple query always returns person3
for _ in 0..10 {
assert_eq!(

0 comments on commit 35f0173

Please sign in to comment.