We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2edfd8b + 09997d4 commit a95a93cCopy full SHA for a95a93c
tests/integration/test_project_setup.py
@@ -24,13 +24,11 @@ def simple_ontology():
24
return {"tools": [], "classifications": classifications}
25
26
27
-def test_project_setup(project, iframe_url) -> None:
+def test_project_setup(project) -> None:
28
client = project.client
29
labeling_frontends = list(
30
- client.get_labeling_frontends(
31
- where=LabelingFrontend.iframe_url_path == iframe_url))
32
- assert len(labeling_frontends) == 1, (
33
- f'Checking for {iframe_url} and received {labeling_frontends}')
+ client.get_labeling_frontends(where=LabelingFrontend.name == 'Editor'))
+ assert len(labeling_frontends)
34
labeling_frontend = labeling_frontends[0]
35
36
time.sleep(3)
0 commit comments