aboutsummaryrefslogtreecommitdiff
path: root/src/context/context_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/context/context_test.go')
-rw-r--r--src/context/context_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context/context_test.go b/src/context/context_test.go
index 57066c9685..ad47f853dd 100644
--- a/src/context/context_test.go
+++ b/src/context/context_test.go
@@ -5,7 +5,7 @@
package context
// Tests in package context cannot depend directly on package testing due to an import cycle.
-// If your test does requires access to unexported members of the context package,
+// If your test requires access to unexported members of the context package,
// add your test below as `func XTestFoo(t testingT)` and add a `TestFoo` to x_test.go
// that calls it. Otherwise, write a regular test in a test.go file in package context_test.