@@ -371,7 +371,7 @@ func TestIntegration_PullModel(t *testing.T) {
371371 t .Run (tc .name , func (t * testing.T ) {
372372 // Pull the model using the test case reference
373373 t .Logf ("Pulling model with reference: %s" , tc .ref )
374- err := pullModel (newPullCmd (), env .client , tc .ref , true )
374+ err := pullModel (newPullCmd (), env .client , tc .ref )
375375 require .NoError (t , err , "Failed to pull model with reference: %s" , tc .ref )
376376
377377 // List models and verify the expected model is present
@@ -426,7 +426,7 @@ func TestIntegration_InspectModel(t *testing.T) {
426426 // Pull the model using a short reference
427427 pullRef := "inspect-test"
428428 t .Logf ("Pulling model with reference: %s" , pullRef )
429- err = pullModel (newPullCmd (), env .client , pullRef , true )
429+ err = pullModel (newPullCmd (), env .client , pullRef )
430430 require .NoError (t , err , "Failed to pull model" )
431431
432432 // Verify the model was pulled
@@ -485,7 +485,7 @@ func TestIntegration_TagModel(t *testing.T) {
485485 // Pull the model using a simple reference
486486 pullRef := "tag-test"
487487 t .Logf ("Pulling model with reference: %s" , pullRef )
488- err = pullModel (newPullCmd (), env .client , pullRef , true )
488+ err = pullModel (newPullCmd (), env .client , pullRef )
489489 require .NoError (t , err , "Failed to pull model" )
490490
491491 // Verify the model was pulled
@@ -663,7 +663,7 @@ func TestIntegration_PushModel(t *testing.T) {
663663 // Pull the model using a simple reference
664664 pullRef := "tag-test"
665665 t .Logf ("Pulling model with reference: %s" , pullRef )
666- err = pullModel (newPullCmd (), env .client , pullRef , true )
666+ err = pullModel (newPullCmd (), env .client , pullRef )
667667 require .NoError (t , err , "Failed to pull model" )
668668
669669 // Verify the model was pulled
@@ -814,7 +814,7 @@ func TestIntegration_RemoveModel(t *testing.T) {
814814 // Pull the model
815815 pullRef := "rm-test"
816816 t .Logf ("Pulling model with reference: %s" , pullRef )
817- err := pullModel (newPullCmd (), env .client , pullRef , true )
817+ err := pullModel (newPullCmd (), env .client , pullRef )
818818 require .NoError (t , err , "Failed to pull model" )
819819
820820 // Verify model exists
@@ -848,11 +848,11 @@ func TestIntegration_RemoveModel(t *testing.T) {
848848
849849 // Pull both models
850850 t .Logf ("Pulling first model: rm-multi-1" )
851- err := pullModel (newPullCmd (), env .client , "rm-multi-1" , true )
851+ err := pullModel (newPullCmd (), env .client , "rm-multi-1" )
852852 require .NoError (t , err , "Failed to pull first model" )
853853
854854 t .Logf ("Pulling second model: rm-multi-2" )
855- err = pullModel (newPullCmd (), env .client , "rm-multi-2" , true )
855+ err = pullModel (newPullCmd (), env .client , "rm-multi-2" )
856856 require .NoError (t , err , "Failed to pull second model" )
857857
858858 // Verify both models exist
@@ -878,7 +878,7 @@ func TestIntegration_RemoveModel(t *testing.T) {
878878 t .Run ("remove specific tag keeps other tags" , func (t * testing.T ) {
879879 // Pull the model
880880 t .Logf ("Pulling model: rm-test" )
881- err := pullModel (newPullCmd (), env .client , "rm-test" , true )
881+ err := pullModel (newPullCmd (), env .client , "rm-test" )
882882 require .NoError (t , err , "Failed to pull model" )
883883
884884 // Add multiple tags to the same model
@@ -940,7 +940,7 @@ func TestIntegration_RemoveModel(t *testing.T) {
940940 t .Run ("remove by model ID removes all tags" , func (t * testing.T ) {
941941 // Pull the model
942942 t .Logf ("Pulling model: rm-test" )
943- err := pullModel (newPullCmd (), env .client , "rm-test" , true )
943+ err := pullModel (newPullCmd (), env .client , "rm-test" )
944944 require .NoError (t , err , "Failed to pull model" )
945945
946946 // Add multiple tags
@@ -971,7 +971,7 @@ func TestIntegration_RemoveModel(t *testing.T) {
971971 t .Run ("force flag" , func (t * testing.T ) {
972972 // Pull the model
973973 t .Logf ("Pulling model: rm-test" )
974- err := pullModel (newPullCmd (), env .client , "rm-test" , true )
974+ err := pullModel (newPullCmd (), env .client , "rm-test" )
975975 require .NoError (t , err , "Failed to pull model" )
976976
977977 // Test removal with force flag
0 commit comments