Skip to content

Commit 7310c72

Browse files
myeuneegopherbot
authored andcommitted
importgraph: correct typo in graph_test.go
This PR corrects a typo in the error message for the reverse.Search function. The word "irrefexive" was incorrectly spelled and has been corrected to "irreflexive." Change-Id: Iaf838962c994919d4a0c39b78907c3a716d16dd9 GitHub-Last-Rev: 8ee307e GitHub-Pull-Request: #531 Reviewed-on: https://go-review.googlesource.com/c/tools/+/620057 Reviewed-by: Robert Findley <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Robert Findley <[email protected]> Reviewed-by: Alan Donovan <[email protected]>
1 parent ce4cb55 commit 7310c72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

refactor/importgraph/graph_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ func TestBuild(t *testing.T) {
153153
}
154154
if !reverse.Search(this)[this] {
155155
printNode("reverse", this)
156-
t.Errorf("irrefexive: reverse.Search(importgraph)[importgraph] not found")
156+
t.Errorf("irreflexive: reverse.Search(importgraph)[importgraph] not found")
157157
}
158158

159159
// Test Search is transitive. (There is no direct edge to these packages.)

0 commit comments

Comments
 (0)