fix(users/Profpatsch/netencode-rs-tests): reflect changed T::List type
a044a87084
removed boxes in T::List, but
the tests were not adjusted accordingly.
Seems like netencode fell victim to CI not recursing into attrsets not
generated by readTree in pipeline generation.
Change-Id: I65d58a82881059983f7d6bc7a32263c6671ccbba
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2486
Reviewed-by: Profpatsch <mail@profpatsch.de>
Tested-by: BuildkiteCI
This commit is contained in:
parent
716bbb70f9
commit
96edc545de
1 changed files with 1 additions and 1 deletions
|
@ -556,7 +556,7 @@ pub mod parse {
|
|||
("foo".to_owned(), T::List(vec![
|
||||
T::Sum(Tag { tag: "A".to_owned(), val: Box::new(T::Unit) }),
|
||||
T::Sum(Tag { tag: "A".to_owned(), val: Box::new(T::N1(true)) }),
|
||||
T::Sum(Tag { tag: "B".to_owned(), val: Box::new(T::List(Box::new(vec![T::I3(127)]))) }),
|
||||
T::Sum(Tag { tag: "B".to_owned(), val: Box::new(T::List(vec![T::I3(127)])) }),
|
||||
]))
|
||||
].into_iter().collect::<HashMap<String, T>>())))
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue