From d38126703501298f7b5da58911167d5b7aa2fb62 Mon Sep 17 00:00:00 2001 From: Ross Wilson Date: Sat, 14 May 2016 17:18:40 +0700 Subject: [PATCH] Fixed error in test_TTYOUT.py --- pymlac/test_TTYIN.py | 3 +-- pymlac/test_TTYOUT.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/pymlac/test_TTYIN.py b/pymlac/test_TTYIN.py index f447db7..b6313c4 100644 --- a/pymlac/test_TTYIN.py +++ b/pymlac/test_TTYIN.py @@ -108,8 +108,7 @@ def main(): # print number of errors print('\n***** %d errors' % ErrorCount) -# return ErrorCount - return 0 + return ErrorCount ################################################################################ diff --git a/pymlac/test_TTYOUT.py b/pymlac/test_TTYOUT.py index 5e8fc77..bcd3c37 100644 --- a/pymlac/test_TTYOUT.py +++ b/pymlac/test_TTYOUT.py @@ -105,8 +105,7 @@ def main(): # print number of errors print('\n***** %d errors' % ErrorCount) -# return ErrorCount - return 0 + return ErrorCount ################################################################################