Skip to content

Commit a044ff0

Browse files
committed
Sped up tests.
1 parent 90bf1cc commit a044ff0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_semchunk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def tiktoken_token_counter(text: str) -> int:
2323
return len(tiktoken_tokenizer.encode(text))
2424

2525
# Test chunking with a variety of chunk sizes.
26-
for chunk_size in {1, 2, 512}:
26+
for chunk_size in {1, 512, 1024}:
2727
# Test chunking with a variety of texts.
2828
for fileid in {'austen-emma.txt', 'carroll-alice.txt', 'shakespeare-macbeth.txt'}:
2929
sample = gutenberg.raw(fileid)

0 commit comments

Comments
 (0)