@@ -56,9 +56,7 @@ def git_repo(self):
5656 test_file = Path (tmpdir ) / "test.txt"
5757 test_file .write_text ("test content" )
5858 subprocess .run (["git" , "add" , "." ], cwd = tmpdir , check = True , capture_output = True )
59- subprocess .run (
60- ["git" , "commit" , "-m" , "Initial commit" ], cwd = tmpdir , check = True , capture_output = True
61- )
59+ subprocess .run (["git" , "commit" , "-m" , "Initial commit" ], cwd = tmpdir , check = True , capture_output = True )
6260
6361 # Add a remote
6462 subprocess .run (
@@ -243,12 +241,12 @@ def test_prepare_metadata_cli_clears_value(self, temp_git_repo):
243241class TestIntegration :
244242 """Integration tests for the full workflow."""
245243
246- def test_app_upload_signature_accepts_metadata (self ):
247- """Test that app_upload accepts metadata parameter."""
244+ def test_upload_bundle_signature_accepts_metadata (self ):
245+ """Test that upload_bundle accepts metadata parameter."""
248246 from inspect import signature
249247
250248 from rsconnect .api import RSConnectClient
251249
252- # Check that app_upload has metadata parameter
253- sig = signature (RSConnectClient .app_upload )
250+ # Check that upload_bundle has metadata parameter
251+ sig = signature (RSConnectClient .upload_bundle )
254252 assert "metadata" in sig .parameters
0 commit comments