Skip to content

Commit

Permalink
Fix "excedeed" typo in error message.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 407832948
  • Loading branch information
Googler authored and copybara-github committed Nov 5, 2021
1 parent dff91a6 commit a5c6b65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public ConfiguredTarget build() throws ActionConflictException, InterruptedExcep
if (depCount > ruleContext.getConfiguration().analysisTestingDepsLimit()) {
ruleContext.ruleError(
String.format(
"analysis test rule excedeed maximum dependency edge count. "
"analysis test rule exceeded maximum dependency edge count. "
+ "Count: %s. Limit is %s. This limit is imposed on analysis test rules which "
+ "use analysis_test_transition attribute transitions. Exceeding this limit "
+ "indicates either the analysis_test has too many dependencies, or the "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2650,7 +2650,7 @@ public void testAnalysisTestOverDepsLimit() throws Exception {
reporter.removeHandler(failFastHandler);
getConfiguredTarget("//test:r");
assertContainsEvent(
"analysis test rule excedeed maximum dependency edge count. " + "Count: 14. Limit is 10.");
"analysis test rule exceeded maximum dependency edge count. " + "Count: 14. Limit is 10.");
}

@Test
Expand Down

0 comments on commit a5c6b65

Please sign in to comment.