@@ -76,12 +76,10 @@ def test_node_registration_exports_expected_nodes():
7676
7777 assert list (package .NODE_CLASS_MAPPINGS .keys ()) == [
7878 "DenoResolutionSetup" ,
79- "DenoResolutionSetupDragTest" ,
8079 "DenoMultiImageLoader" ,
8180 "DenoLTXSequencer" ,
8281 ]
8382 assert package .NODE_DISPLAY_NAME_MAPPINGS ["DenoResolutionSetup" ] == "(Deno) Resize Box"
84- assert package .NODE_DISPLAY_NAME_MAPPINGS ["DenoResolutionSetupDragTest" ] == "(Deno) Resize Box (Drag Test)"
8583 assert package .NODE_DISPLAY_NAME_MAPPINGS ["DenoMultiImageLoader" ] == "(Deno) Multi Image Loader"
8684 assert package .NODE_DISPLAY_NAME_MAPPINGS ["DenoLTXSequencer" ] == "(Deno) LTX Sequencer"
8785 assert package .WEB_DIRECTORY == "./web/js"
@@ -129,22 +127,6 @@ def test_resize_box_declares_comfyui_contract():
129127 assert node_cls .FUNCTION == "setup_resolution"
130128
131129
132- def test_resize_box_drag_test_declares_comfyui_contract ():
133- package = load_package ()
134- node_cls = package .NODE_CLASS_MAPPINGS ["DenoResolutionSetupDragTest" ]
135-
136- input_types = node_cls .INPUT_TYPES ()
137-
138- assert input_types ["required" ]["mode" ][0 ] == ["Preset Ratio" , "Manual Input" ]
139- assert "16:9" in input_types ["required" ]["ratio_preset" ][0 ]
140- assert input_types ["required" ]["megapixels" ][0 ] == "FLOAT"
141- assert input_types ["required" ]["divisible_by" ][0 ] == ["8" , "16" , "32" , "64" , "128" ]
142- assert input_types ["optional" ]["image" ][0 ] == "IMAGE"
143- assert node_cls .RETURN_TYPES == ("IMAGE" , "INT" , "INT" )
144- assert node_cls .RETURN_NAMES == ("image" , "width" , "height" )
145- assert node_cls .FUNCTION == "setup_resolution"
146-
147-
148130def test_resize_box_calculates_aligned_dimensions_for_preset_mode ():
149131 package = load_package ()
150132 node = package .DenoResolutionSetup ()
0 commit comments