Skip to content

Commit eb9174c

Browse files
committed
fix integration tests after moving test file
1 parent b04f2a1 commit eb9174c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import berserk
22
import pytest
3-
from tests.clients.utils import validate
43

54
BASE_URL = "http://bdit_lila:8080"
65

@@ -12,7 +11,6 @@ def client():
1211
yield client
1312

1413

15-
class TestGames:
16-
def test_export_imported_games(self, client):
17-
res = client.games.export_imported()
18-
validate(str, res)
14+
def test_export_imported_games(client):
15+
res = client.games.export_imported()
16+
assert isinstance(res, str)

0 commit comments

Comments
 (0)