diff options
Diffstat (limited to 'resources/libraries/python/autogen/Testcase.py')
-rw-r--r-- | resources/libraries/python/autogen/Testcase.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/libraries/python/autogen/Testcase.py b/resources/libraries/python/autogen/Testcase.py index 4f92e6c2e1..dd58547f33 100644 --- a/resources/libraries/python/autogen/Testcase.py +++ b/resources/libraries/python/autogen/Testcase.py @@ -49,10 +49,10 @@ class Testcase(object): :rtype: str """ try: - fs = int(framesize) + fsize = int(framesize) subst_dict = { - "frame_num": "${%d}" % fs, - "frame_str": "%dB" % fs + "frame_num": "${%d}" % fsize, + "frame_str": "%dB" % fsize } except ValueError: # Assuming an IMIX string. subst_dict = { |