Skip to content

Commit 2529312

Browse files
committed
Codegen: fix test.qlgen failure
1 parent 928da77 commit 2529312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/codegen/test/test_qlgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ def test_synth_property(generate_classes):
885885
schema.Class("MyObject", properties=[
886886
schema.SingleProperty("foo", "bar", synth=True)]),
887887
]) == {
888-
"MyObject.qll": (a_ql_stub(name="MyObject", base_import=gen_import_prefix + "MyObject"),
888+
"MyObject.qll": (a_ql_stub(name="MyObject"),
889889
a_ql_class(name="MyObject", final=True,
890890
properties=[
891891
ql.Property(singular="Foo", type="bar", tablename="my_objects", synth=True,

0 commit comments

Comments
 (0)