mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 00:28:31 +00:00
11 lines
377 B
Python
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)
|