We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f497640 commit c57c8a5Copy full SHA for c57c8a5
pkg/distribution/distribution/client_test.go
@@ -463,11 +463,6 @@ func TestClientPullModel(t *testing.T) {
463
464
// Try to pull the safetensors model - should fail with ErrUnsupportedFormat
465
err = testClient.PullModel(context.Background(), tag, nil)
466
- if err == nil {
467
- t.Fatal("Expected error when pulling safetensors model, got nil")
468
- }
469
-
470
- // Verify the error is ErrUnsupportedFormat
471
if !errors.Is(err, ErrUnsupportedFormat) {
472
t.Fatalf("Expected ErrUnsupportedFormat, got: %v", err)
473
}
0 commit comments