Skip to content

Commit 31363da

Browse files
author
Richard Kuo (Onyx)
committed
loose check for number of docs
1 parent 6fe31d3 commit 31363da

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

backend/tests/daily/connectors/salesforce/test_salesforce_connector.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,11 @@ def test_salesforce_connector_basic(salesforce_connector: SalesforceConnector) -
6262
target_test_doc = doc
6363
break
6464

65-
assert len(all_docs) == 32472
65+
# The number of docs here increases actively so do a very loose check
66+
# as of 2025-03-28 it was around 32472
67+
assert len(all_docs) > 32472
68+
assert len(all_docs) < 40000
69+
6670
assert target_test_doc is not None
6771

6872
# Set of received links

0 commit comments

Comments
 (0)