From 4b7abd0ffd85bdbbaca08a8010bbc455c2b57c19 Mon Sep 17 00:00:00 2001 From: Andreas Koepf Date: Tue, 11 Feb 2025 23:37:38 +0100 Subject: [PATCH] test: Add test for ABConfig dataset generation --- tests/test_ab.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_ab.py b/tests/test_ab.py index caa67207..b32b8956 100644 --- a/tests/test_ab.py +++ b/tests/test_ab.py @@ -1,9 +1,7 @@ -import pytest - from reasoning_gym.algorithmic.ab import ABConfig, ABDataset -def test_zebra_puzzles(): +def test_abconfig_puzzles(): """Test basic properties and solution of generated items""" config = ABConfig(seed=42, size=10, length=5) dataset = ABDataset(config)