aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSastry Isukapalli <sastry@research.att.com>2018-03-07 22:00:20 -0500
committerSastry Isukapalli <sastry@research.att.com>2018-03-07 22:15:02 -0500
commit356b52c79dc56b97d910211272c7bdbef80b884a (patch)
tree2bc08c2908648d743624ea68ea26f45d0b479e66 /test
parent422df2fa5f10ea14352b1a319ee7764d704d6050 (diff)
getOptions renamed in osdfapp.py and tests
Issue-ID: OPTFRA-102 Change-Id: Idf0a61ff837ecd26577febaca5f0538971759792 Signed-off-by: Sastry Isukapalli <sastry@research.att.com>
Diffstat (limited to 'test')
-rw-r--r--test/mainapp/test_osdfapp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mainapp/test_osdfapp.py b/test/mainapp/test_osdfapp.py
index c162ac0..7fbe707 100644
--- a/test/mainapp/test_osdfapp.py
+++ b/test/mainapp/test_osdfapp.py
@@ -65,8 +65,8 @@ class TestOSDFApp(TestCase):
resp = osdfapp.internal_failure(e)
assert resp.status_code == 500
- def test_getOptions_default(self):
- opts = osdfapp.getOptions(["PROG"]) # ensure nothing breaks
+ def test_get_options_default(self):
+ opts = osdfapp.get_options(["PROG"]) # ensure nothing breaks
if __name__ == "__main__":