Skip to content

Commit f7abe37

Browse files
committed
Update test_http_pokemon.py
1 parent 376b54a commit f7abe37

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

examples/project-pikachu/test_http_pokemon.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,12 @@
2525
import time
2626
from pathlib import Path
2727

28-
# Add both src and examples to path
28+
# Add src to path
2929
project_root = Path(__file__).parent.parent.parent
30-
sys.path.insert(0, str(project_root / "src")) # For core
31-
sys.path.insert(0, str(project_root / "examples/project-pikachu")) # For poke_env
30+
sys.path.insert(0, str(project_root / "src"))
3231

33-
from poke_env.client import PokemonEnv
34-
from poke_env.models import PokemonAction
32+
from envs.pokemon_env.client import PokemonEnv
33+
from envs.pokemon_env.models import PokemonAction
3534

3635

3736
def test_health_check(base_url: str):

0 commit comments

Comments
 (0)