diff options
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)) |