Address PR comments

This commit is contained in:
Jash Gulabrai 2025-04-15 18:04:19 -04:00
parent b8d2e33955
commit 334cd8b34a
8 changed files with 12 additions and 13 deletions

View file

@ -33,7 +33,7 @@ class TestNVIDIAEvalImpl(unittest.TestCase):
self.agents_api = MagicMock()
self.config = NVIDIAEvalConfig(
evaluator_service_url=os.environ["NVIDIA_EVALUATOR_URL"],
evaluator_url=os.environ["NVIDIA_EVALUATOR_URL"],
)
self.eval_impl = NVIDIAEvalImpl(
@ -56,9 +56,6 @@ class TestNVIDIAEvalImpl(unittest.TestCase):
self.mock_evaluator_get = self.evaluator_get_patcher.start()
self.mock_evaluator_post = self.evaluator_post_patcher.start()
# Set up async test helper
# self.run_async = self._create_async_helper()
def tearDown(self):
"""Clean up after each test."""
self.evaluator_get_patcher.stop()