Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def test_enrichment_with_google_cloudsql_pg(self, mock_stdout):
enrichment_with_google_cloudsql_pg()
output = mock_stdout.getvalue().splitlines()
expected = validate_enrichment_with_google_cloudsql_pg()
self.assertEqual(output, expected)
self.assertEqual(sorted(output), sorted(expected))
except Exception as e:
self.fail(f"Test failed with unexpected error: {e}")

Expand All @@ -188,7 +188,7 @@ def test_enrichment_with_external_pg(self, mock_stdout):
enrichment_with_external_pg()
output = mock_stdout.getvalue().splitlines()
expected = validate_enrichment_with_external_pg()
self.assertEqual(output, expected)
self.assertEqual(sorted(output), sorted(expected))
except (TestContainerStartupError, TestContainerTeardownError) as e:
raise unittest.SkipTest(str(e))
except Exception as e:
Expand All @@ -201,7 +201,7 @@ def test_enrichment_with_external_mysql(self, mock_stdout):
enrichment_with_external_mysql()
output = mock_stdout.getvalue().splitlines()
expected = validate_enrichment_with_external_mysql()
self.assertEqual(output, expected)
self.assertEqual(sorted(output), sorted(expected))
except (TestContainerStartupError, TestContainerTeardownError) as e:
raise unittest.SkipTest(str(e))
except Exception as e:
Expand All @@ -214,7 +214,7 @@ def test_enrichment_with_external_sqlserver(self, mock_stdout):
enrichment_with_external_sqlserver()
output = mock_stdout.getvalue().splitlines()
expected = validate_enrichment_with_external_sqlserver()
self.assertEqual(output, expected)
self.assertEqual(sorted(output), sorted(expected))
except (TestContainerStartupError, TestContainerTeardownError) as e:
raise unittest.SkipTest(str(e))
except Exception as e:
Expand Down
Loading