File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,17 +51,17 @@ def test_consumer_count_search_read(
5151 {"subject:identifier" : f"{ NHS_NUMBER_SYSTEM_URL } |{ patient_id } " }
5252 )
5353 assert count_response .ok
54- assert count_response .json ()["total" ] = = len (test_pointers )
54+ assert count_response .json ()["total" ] > = len (test_pointers )
5555
5656 # Search
5757 search_response = consumer_client .search (patient_id )
5858 assert search_response .ok
59- assert search_response .json ()["total" ] = = len (test_pointers )
59+ assert search_response .json ()["total" ] > = len (test_pointers )
6060
6161 # Search with POST
6262 search_response = consumer_client .search_post (patient_id )
6363 assert search_response .ok
64- assert search_response .json ()["total" ] = = len (test_pointers )
64+ assert search_response .json ()["total" ] > = len (test_pointers )
6565
6666 # Read
6767 read_response = consumer_client .read (test_pointers [0 ].id )
You can’t perform that action at this time.
0 commit comments