Skip to content

Commit 391a7ab

Browse files
comment
1 parent 7eaee76 commit 391a7ab

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/integrations/huggingface_hub/test_huggingface_hub.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ def test_chat_completion(
616616
)
617617
events = capture_events()
618618

619-
# The provider parameter was added in 0.28.0 of huggingface_hub
619+
# The provider parameter was added in version 0.28.0 of huggingface_hub
620620
client = (
621621
InferenceClient(model="test-model", provider="hf-inference")
622622
if HF_VERSION >= (0, 28, 0)
@@ -693,7 +693,7 @@ def test_chat_completion_streaming(
693693
)
694694
events = capture_events()
695695

696-
# The provider parameter was added in 0.28.0 of huggingface_hub
696+
# The provider parameter was added in version 0.28.0 of huggingface_hub
697697
client = (
698698
InferenceClient(model="test-model", provider="hf-inference")
699699
if HF_VERSION >= (0, 28, 0)
@@ -762,7 +762,7 @@ def test_chat_completion_api_error(
762762
sentry_init(traces_sample_rate=1.0)
763763
events = capture_events()
764764

765-
# The provider parameter was added in 0.28.0 of huggingface_hub
765+
# The provider parameter was added in version 0.28.0 of huggingface_hub
766766
client = (
767767
InferenceClient(model="test-model", provider="hf-inference")
768768
if HF_VERSION >= (0, 28, 0)
@@ -819,7 +819,7 @@ def test_span_status_error(sentry_init, capture_events, mock_hf_api_with_errors)
819819
sentry_init(traces_sample_rate=1.0)
820820
events = capture_events()
821821

822-
# The provider parameter was added in 0.28.0 of huggingface_hub
822+
# The provider parameter was added in version 0.28.0 of huggingface_hub
823823
client = (
824824
InferenceClient(model="test-model", provider="hf-inference")
825825
if HF_VERSION >= (0, 28, 0)
@@ -869,7 +869,7 @@ def test_chat_completion_with_tools(
869869
)
870870
events = capture_events()
871871

872-
# The provider parameter was added in 0.28.0 of huggingface_hub
872+
# The provider parameter was added in version 0.28.0 of huggingface_hub
873873
client = (
874874
InferenceClient(model="test-model", provider="hf-inference")
875875
if HF_VERSION >= (0, 28, 0)
@@ -963,7 +963,7 @@ def test_chat_completion_streaming_with_tools(
963963
)
964964
events = capture_events()
965965

966-
# The provider parameter was added in 0.28.0 of huggingface_hub
966+
# The provider parameter was added in version 0.28.0 of huggingface_hub
967967
client = (
968968
InferenceClient(model="test-model", provider="hf-inference")
969969
if HF_VERSION >= (0, 28, 0)

0 commit comments

Comments
 (0)