瀏覽代碼

Syntax error fixes

Yann Weber 9 年之前
父節點
當前提交
25e5858ba2
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2
    3
      EditorialModel/test/test_fieldgroups.py

+ 2
- 3
EditorialModel/test/test_fieldgroups.py 查看文件

@@ -33,7 +33,6 @@ def setUpModule():
33 33
     }
34 34
 
35 35
     logging.basicConfig(level=logging.CRITICAL)
36
-    print(sqlutils.getEngine())
37 36
 
38 37
 class FieldGroupTestCase(TestCase):
39 38
     
@@ -158,7 +157,7 @@ class TestCreate(FieldGroupTestCase):
158 157
                 with self.assertRaises(TypeError, msg="Should raise because trying to give "+badarg_name+" as em_class"):
159 158
                     fg = EmFieldGroup('new_fg'+i, badargs[badarg_name])
160 159
 
161
-        with self.subTest("With badarg as first argument")
160
+        with self.subTest("With badarg as first argument"):
162 161
             #Creating a fieldgroup to test duplicate name
163 162
             exfg = FieldGroup.create('existingfg', EmClass('entity1'))
164 163
 
@@ -205,7 +204,7 @@ class TestFields(FieldGroupTestCase):
205 204
         excepted1 = set(excepted1)
206 205
  
207 206
         tests = {
208
-            'newly': EmFieldGroup('testfg')
207
+            'newly': EmFieldGroup('testfg'),
209 208
             'old' : self.fg1
210 209
         }
211 210
 

Loading…
取消
儲存