aboutsummaryrefslogtreecommitdiffstats
path: root/rust/tests/test_old_python_tests.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-11-26 23:43:56 -0800
committerBryan Newbold <bnewbold@robocracy.org>2018-11-26 23:45:02 -0800
commitda113570daf4b2d17cd828e3b512774485870ff0 (patch)
tree075b02998eb3eb4d4d0878317dbd0a71ef8b64a9 /rust/tests/test_old_python_tests.rs
parent32cd25bf48d54f5ede4e327d073d2782e4a81524 (diff)
downloadfatcat-da113570daf4b2d17cd828e3b512774485870ff0.tar.gz
fatcat-da113570daf4b2d17cd828e3b512774485870ff0.zip
implement hide flag
Diffstat (limited to 'rust/tests/test_old_python_tests.rs')
-rw-r--r--rust/tests/test_old_python_tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/tests/test_old_python_tests.rs b/rust/tests/test_old_python_tests.rs
index 1b496328..5e33a7f6 100644
--- a/rust/tests/test_old_python_tests.rs
+++ b/rust/tests/test_old_python_tests.rs
@@ -148,7 +148,7 @@ fn test_api_rich_create() {
};
// test that foreign key relations worked
- let re = match client.get_release(release_id.clone(), None).wait().unwrap() {
+ let re = match client.get_release(release_id.clone(), None, None).wait().unwrap() {
GetReleaseResponse::FoundEntity(e) => e,
_ => unreachable!(),
};
@@ -166,7 +166,7 @@ fn test_api_rich_create() {
stub_release_id
);
- let fe = match client.get_file(file_id, None).wait().unwrap() {
+ let fe = match client.get_file(file_id, None, None).wait().unwrap() {
GetFileResponse::FoundEntity(e) => e,
_ => unreachable!(),
};