fix failing tests

This commit is contained in:
Folkert 2020-04-25 21:12:49 +02:00
parent a0512a5f97
commit cd4c28ca0c

View file

@ -495,7 +495,13 @@ impl FieldAccess {
} }
pub fn list_seen() -> Self { pub fn list_seen() -> Self {
Self::default() use Mark::*;
use Usage::*;
let mut result = Self::default();
result.fields.insert(LIST_ELEM.into(), Simple(Seen));
result
} }
pub fn list_update() -> Self { pub fn list_update() -> Self {