Skip to content

Commit

Permalink
loosen queries count constraint for export
Browse files Browse the repository at this point in the history
  • Loading branch information
hipek8 committed Oct 31, 2024
1 parent 04002d9 commit 9d3e255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ralph/data_importer/tests/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def test_data_center_asset_export_filtered(self):
)
queries = len(cqc)
self.assertEqual(len(export_data.dict), 1)
self.assertLessEqual(queries, 10)
self.assertLessEqual(queries, 12)

class DataCenterAssetExporterTestCaseWithParent(DataCenterAssetExporterTestCase):
def _init(self, num=10):
Expand Down

0 comments on commit 9d3e255

Please sign in to comment.