diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-05 13:34:45 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-05 13:34:45 -0500 |
commit | 21dc42548db1fc8aef0f7cc2983414279ecb1480 (patch) | |
tree | f67a8187df31df0d33c7758cc1051960d1c05294 /gruel/src/python/qa_pmt_to_python.py | |
parent | 5019c6a4ff62b4579dac5a0adfcbb3f0a7f2da10 (diff) |
gruel: fixing PMT naming issues with new PMT utilities.
Diffstat (limited to 'gruel/src/python/qa_pmt_to_python.py')
-rwxr-xr-x | gruel/src/python/qa_pmt_to_python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gruel/src/python/qa_pmt_to_python.py b/gruel/src/python/qa_pmt_to_python.py index c63403a520..71aa9000ea 100755 --- a/gruel/src/python/qa_pmt_to_python.py +++ b/gruel/src/python/qa_pmt_to_python.py @@ -26,7 +26,7 @@ import pmt class test_gruel_pmt_to_python(unittest.TestCase): def test01 (self): - b = pmt.pmt_from_double(123765) + b = pmt.from_double(123765) self.assertEqual(pmt.to_python(b), 123765) t = pmt.to_pmt(range(5)) |