Skip to content

Commit

Permalink
test import fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bboynton97 committed Aug 14, 2024
1 parent 4bf8ba1 commit fa6f1e5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/test_canary.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import time
import agentops
from agentops import ActionEvent
from agentops.helpers import clear_singletons
from agentops.singleton import clear_singletons


@pytest.fixture(autouse=True)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pytest
import agentops
from agentops import ActionEvent, ErrorEvent
from agentops.helpers import clear_singletons
from agentops.singleton import clear_singletons


@pytest.fixture(autouse=True)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_record_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import agentops
from agentops import record_action
from datetime import datetime
from agentops.helpers import clear_singletons
from agentops.singleton import clear_singletons
import contextlib

jwts = ["some_jwt", "some_jwt2", "some_jwt3"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_record_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from agentops import record_tool
from datetime import datetime

from agentops.helpers import clear_singletons
from agentops.singleton import clear_singletons
import contextlib

jwts = ["some_jwt", "some_jwt2", "some_jwt3"]
Expand Down
3 changes: 1 addition & 2 deletions tests/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
import time
import agentops
from agentops import ActionEvent, Client
from agentops.exceptions import NoSessionException, MultiSessionException
from agentops.helpers import clear_singletons
from agentops.singleton import clear_singletons


@pytest.fixture(autouse=True)
Expand Down

0 comments on commit fa6f1e5

Please sign in to comment.