use strings as values, with option to allow removing

This commit is contained in:
Dustin J. Mitchell
2019-12-29 11:50:05 -05:00
parent e5bd258e84
commit e83bdc28cd
6 changed files with 89 additions and 39 deletions

View File

@@ -20,7 +20,7 @@ fn operation_strategy() -> impl Strategy<Value = Operation> {
Operation::Update {
uuid,
property,
value: true.into(),
value: Some("true".into()),
timestamp: Utc::now(),
}
}),