|
@@ -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
|
|