summaryrefslogtreecommitdiff
path: root/gruel/src/python/qa_pmt_to_python.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-02-05 13:34:45 -0500
committerTom Rondeau <trondeau@vt.edu>2013-02-05 13:34:45 -0500
commit21dc42548db1fc8aef0f7cc2983414279ecb1480 (patch)
treef67a8187df31df0d33c7758cc1051960d1c05294 /gruel/src/python/qa_pmt_to_python.py
parent5019c6a4ff62b4579dac5a0adfcbb3f0a7f2da10 (diff)
gruel: fixing PMT naming issues with new PMT utilities.
Diffstat (limited to 'gruel/src/python/qa_pmt_to_python.py')
-rwxr-xr-xgruel/src/python/qa_pmt_to_python.py2
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))