diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-04-08 17:15:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-08 17:15:22 -0400 |
commit | 002180f02af69c602a80fc1fc824d171cdccd067 (patch) | |
tree | 4b973ff8583193496521a65c12a6153acdf2d046 /test | |
parent | 3a03c2ec71799727ea062faab0cc18050ec8c85e (diff) | |
parent | 6cc0dc44ecfa6fe328772a3ad946f759ee6d6491 (diff) | |
download | podman-002180f02af69c602a80fc1fc824d171cdccd067.tar.gz podman-002180f02af69c602a80fc1fc824d171cdccd067.tar.bz2 podman-002180f02af69c602a80fc1fc824d171cdccd067.zip |
Merge pull request #9971 from jwhonce/wip/df
Add missing return
Diffstat (limited to 'test')
-rw-r--r-- | test/apiv2/rest_api/test_rest_v2_0_0.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/apiv2/rest_api/test_rest_v2_0_0.py b/test/apiv2/rest_api/test_rest_v2_0_0.py index d7910f555..e3874c182 100644 --- a/test/apiv2/rest_api/test_rest_v2_0_0.py +++ b/test/apiv2/rest_api/test_rest_v2_0_0.py @@ -727,6 +727,10 @@ class TestApi(unittest.TestCase): start = json.loads(r.text) self.assertGreater(len(start["Errs"]), 0, r.text) + def test_df(self): + r = requests.get(_url("/system/df")) + self.assertEqual(r.status_code, 200, r.text) + if __name__ == "__main__": unittest.main() |