From 07d4bf7161c7c4b061a4affd592cc02cd52a6801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20=C3=96zmen?= Date: Wed, 31 Dec 2025 15:49:53 +0300 Subject: [PATCH] Rename test for clarity --- tests/test_engine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_engine.py b/tests/test_engine.py index e348df1..de745c4 100644 --- a/tests/test_engine.py +++ b/tests/test_engine.py @@ -235,7 +235,7 @@ def test_num_samples_count(): assert len(results) == num_samples, f"Expected {num_samples} sequences from {num_samples} samples, got {len(results)}" -def test_seed_variation_in_sampling(): +def test_different_seeds_introduce_variation_when_temperature_nonzero(): """With temperature > 0, different seeds should introduce sampling variation.""" model = MockModel() engine = Engine(model, ByteTokenizer()) @@ -256,5 +256,5 @@ def test_seed_variation_in_sampling(): assert len(outputs) > 1, ( f"All seeds produced the same output: {outputs}" f"with temperature > 0 and different seeds, this is statistically impossible." - f"implies an issue within engine." + f"this implies an issue within the engine." )