diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-11 14:52:44 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-11 14:52:44 -0800 |
commit | 54e34ddd56b705cba239f88a9239c603d3ecd20e (patch) | |
tree | 5007cbc2d315d04b5788eb6cec0b7537e8baa51b /rust/src/entity_crud.rs | |
parent | cd5cf1b9f7a50cd3c2f2a42b4a0b3743a5c31d7e (diff) | |
download | fatcat-54e34ddd56b705cba239f88a9239c603d3ecd20e.tar.gz fatcat-54e34ddd56b705cba239f88a9239c603d3ecd20e.zip |
yet more edit lifecycle progress
Diffstat (limited to 'rust/src/entity_crud.rs')
-rw-r--r-- | rust/src/entity_crud.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rust/src/entity_crud.rs b/rust/src/entity_crud.rs index 2c54e715..b2ef6323 100644 --- a/rust/src/entity_crud.rs +++ b/rust/src/entity_crud.rs @@ -162,8 +162,8 @@ fn test_expand_flags() { webcaptures: true, container: true, releases: true, - creators: true - editors: true + creators: true, + editors: true, } ); assert!(ExpandFlags::from_str("").unwrap().files == false); @@ -181,8 +181,8 @@ fn test_expand_flags() { webcaptures: true, container: true, releases: true, - creators: true - editors: true + creators: true, + editors: true, } ); } |