Skip to content

Commit

Permalink
remove deprecated steps from tests
Browse files Browse the repository at this point in the history
Signed-off-by: Lucca Baumgärtner <[email protected]>
  • Loading branch information
luccalb committed Feb 6, 2024
1 parent 1da8c3e commit 91b83ae
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/test_pipeline_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2024 Felix Zailskas <[email protected]>

import os
import unittest
from unittest.mock import MagicMock, mock_open, patch

Expand All @@ -22,7 +21,6 @@ def test_get_pipeline_steps(self):
[
(HashGenerator, "Hash Generator", ""),
(AnalyzeEmails, "Analyze Emails", ""),
(ScrapeAddress, "Scrape Address", "(will take a long time)"),
(
SearchOffeneRegister,
"Search OffeneRegister",
Expand Down Expand Up @@ -73,7 +71,6 @@ def test_get_pipeline_additional_steps(self):
additional_steps = get_pipeline_additional_steps()
self.assertEqual(
[
(ScrapeAddress, "Scrape Address", "(will take a long time)"),
(
SearchOffeneRegister,
"Search OffeneRegister",
Expand Down

0 comments on commit 91b83ae

Please sign in to comment.