Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions generative_ai/context_caching/test_context_caching.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import create_context_cache
import delete_context_cache
import get_context_cache
import list_content_caches
import list_context_caches
import pytest
import update_context_cache
import use_context_cache
Expand Down Expand Up @@ -50,7 +50,7 @@ def test_get_context_cache(cache_id: str) -> None:


def test_get_list_of_context_caches(cache_id: str) -> None:
response = list_content_caches.list_content_caches()
response = list_context_caches.list_content_caches()
assert cache_id in response


Expand Down