diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-13 18:22:59 +0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-12-13 18:22:59 +0800 |
commit | c6901d5f895889ad25dd2db9a41db11480899a1c (patch) | |
tree | 39ce2a1539f4518fc540f0a16bc5ad29b8c7a5da /rust/tests | |
parent | 9144209a0a6d67d1a81be023e3c69faf1d5e8f94 (diff) | |
download | fatcat-c6901d5f895889ad25dd2db9a41db11480899a1c.tar.gz fatcat-c6901d5f895889ad25dd2db9a41db11480899a1c.zip |
rustfmt
Diffstat (limited to 'rust/tests')
-rw-r--r-- | rust/tests/test_old_python_tests.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/rust/tests/test_old_python_tests.rs b/rust/tests/test_old_python_tests.rs index 5e33a7f6..dde8d66e 100644 --- a/rust/tests/test_old_python_tests.rs +++ b/rust/tests/test_old_python_tests.rs @@ -148,7 +148,11 @@ fn test_api_rich_create() { }; // test that foreign key relations worked - let re = match client.get_release(release_id.clone(), None, None).wait().unwrap() { + let re = match client + .get_release(release_id.clone(), None, None) + .wait() + .unwrap() + { GetReleaseResponse::FoundEntity(e) => e, _ => unreachable!(), }; |