Browse Source

Deleted two debug outputs

Roland Haroutiounian 8 years ago
parent
commit
5e171fa067
1 changed files with 0 additions and 2 deletions
  1. 0
    2
      tests/datahandlers/test_integer.py

+ 0
- 2
tests/datahandlers/test_integer.py View File

@@ -12,13 +12,11 @@ class IntegerTestCase(unittest.TestCase):
12 12
         for test_bad_value in ['ok','ceci est un test', '15.2', 15.2]:
13 13
             _, error = test_int._check_data_value(test_bad_value)
14 14
             self.assertIsNotNone(error)
15
-            print(test_bad_value)
16 15
 
17 16
         # Correct values
18 17
         for test_correct_value in [10, '15', '15.0']:
19 18
             _, error = test_int._check_data_value(test_correct_value)
20 19
             self.assertIsNone(error)
21
-            print(test_correct_value)
22 20
 
23 21
     def test_can_override(self):
24 22
         test_int = Integer()

Loading…
Cancel
Save