Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a typo in the E2E fixture name #42

Merged
merged 1 commit into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/e2e/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def setup_neo4j_for_schema_query(driver):


@pytest.fixture(scope="module")
def ssetup_neo4j_for_schema_query_with_excluded_labels(driver):
def setup_neo4j_for_schema_query_with_excluded_labels(driver):
# Delete all nodes in the graph
driver.execute_query("MATCH (n) DETACH DELETE n")
# Create two labels and a relationship to be excluded
Expand Down
8 changes: 4 additions & 4 deletions tests/e2e/test_schema_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def test_cypher_returns_correct_relationships(driver):
)


@pytest.mark.usefixtures("ssetup_neo4j_for_schema_query_with_excluded_labels")
@pytest.mark.usefixtures("setup_neo4j_for_schema_query_with_excluded_labels")
def test_filtering_labels_node_properties(driver):
node_properties = [
data["output"]
Expand All @@ -92,8 +92,8 @@ def test_filtering_labels_node_properties(driver):
assert node_properties == []


@pytest.mark.usefixtures("ssetup_neo4j_for_schema_query_with_excluded_labels")
def test_get_schema_filtering_labels_relationship_properties(driver):
@pytest.mark.usefixtures("setup_neo4j_for_schema_query_with_excluded_labels")
def test_filtering_labels_relationship_properties(driver):
relationship_properties = [
data["output"]
for data in query_database(
Expand All @@ -104,7 +104,7 @@ def test_get_schema_filtering_labels_relationship_properties(driver):
assert relationship_properties == []


@pytest.mark.usefixtures("ssetup_neo4j_for_schema_query_with_excluded_labels")
@pytest.mark.usefixtures("setup_neo4j_for_schema_query_with_excluded_labels")
def test_filtering_labels_relationships(driver):
relationships = [
data["output"]
Expand Down
Loading