Skip to content

Commit cd30715

Browse files
authored
Fix Sanity Checks (#16)
# Motivation <!-- Why is this change necessary? --> doc sanity check test fix
1 parent 28bab80 commit cd30715

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/api_doc_generation/test_api_doc_generation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_api_doc_generation_sanity(codebase, language: ProgrammingLanguage) -> N
4040
other_lang = "TS" if language == ProgrammingLanguage.PYTHON else "Py"
4141
# =====[ Python ]=====
4242
docs = get_graph_sitter_docs(language=language, codebase=codebase)
43-
assert count_tokens(docs) < 50181
43+
assert count_tokens(docs) < 50500
4444
assert f"{lang}Function" in docs
4545
assert f"{lang}Class" in docs
4646
assert f"{other_lang}Function" not in docs

0 commit comments

Comments
 (0)