Files
crewAI/tests/backward_compatibility_test.py
2025-05-07 07:56:58 +00:00

11 lines
377 B
Python

import unittest
class BackwardCompatibilityTest(unittest.TestCase):
def test_telemtry_typo_compatibility(self):
"""Test that the backward compatibility for the telemtry typo works."""
from crewai.telemtry import Telemetry as MisspelledTelemetry
from crewai.telemetry import Telemetry
self.assertIs(MisspelledTelemetry, Telemetry)