Fixing tests after e9fdc979d

This commit is contained in:
Andrej730
2023-03-15 19:37:30 +05:00
parent c4d2b30017
commit c6d3598c52
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -272,6 +272,7 @@ class Drawing:
def show_decorations(cls): pass
def sync_object_placement(cls, obj): pass
def update_text_value(cls, obj): pass
def update_text_size_pset(cls, obj): pass
@interface
+1
View File
@@ -39,6 +39,7 @@ class TestEditText:
drawing.export_text_literal_attributes("obj").should_be_called().will_return("attributes")
ifc.run("drawing.edit_text_literal", text_literal="text", attributes="attributes").should_be_called()
drawing.update_text_value("obj").should_be_called()
drawing.update_text_size_pset("obj").should_be_called()
drawing.disable_editing_text("obj").should_be_called()
subject.edit_text(ifc, drawing, obj="obj")