We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4ebcca commit 07c6700Copy full SHA for 07c6700
src/test/java/com/imsweb/seerapi/compare/ComparisonTest.java
@@ -76,6 +76,10 @@ void testNdc() throws IOException {
76
params.put("page", String.valueOf(page));
77
prodList = prodService.search(params).execute().body();
78
localList = localService.search(params).execute().body();
79
+
80
+ // there are way too many entities; limit to 10,000
81
+ if (processed >= 10_000)
82
+ break;
83
}
84
85
0 commit comments