@@ -199,9 +199,9 @@ def test_single_property(generate_classes):
199199 "MyObject.qll" : (ql .Stub (name = "MyObject" , base_import = gen_import_prefix + "MyObject" ),
200200 ql .Class (name = "MyObject" , final = True ,
201201 properties = [
202- ql .Property (singular = "Foo" , type = "bar" , tablename = "my_objects" ,
203- tableparams = ["this" , "result" ]),
204- ])),
202+ ql .Property (singular = "Foo" , type = "bar" , tablename = "my_objects" ,
203+ tableparams = ["this" , "result" ]),
204+ ])),
205205 }
206206
207207
@@ -216,13 +216,13 @@ def test_single_properties(generate_classes):
216216 "MyObject.qll" : (ql .Stub (name = "MyObject" , base_import = gen_import_prefix + "MyObject" ),
217217 ql .Class (name = "MyObject" , final = True ,
218218 properties = [
219- ql .Property (singular = "One" , type = "x" , tablename = "my_objects" ,
220- tableparams = ["this" , "result" , "_" , "_" ]),
221- ql .Property (singular = "Two" , type = "y" , tablename = "my_objects" ,
222- tableparams = ["this" , "_" , "result" , "_" ]),
223- ql .Property (singular = "Three" , type = "z" , tablename = "my_objects" ,
224- tableparams = ["this" , "_" , "_" , "result" ]),
225- ])),
219+ ql .Property (singular = "One" , type = "x" , tablename = "my_objects" ,
220+ tableparams = ["this" , "result" , "_" , "_" ]),
221+ ql .Property (singular = "Two" , type = "y" , tablename = "my_objects" ,
222+ tableparams = ["this" , "_" , "result" , "_" ]),
223+ ql .Property (singular = "Three" , type = "z" , tablename = "my_objects" ,
224+ tableparams = ["this" , "_" , "_" , "result" ]),
225+ ])),
226226 }
227227
228228
0 commit comments