aboutsummaryrefslogtreecommitdiff
path: root/internal/config/print_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config/print_test.go')
-rw-r--r--internal/config/print_test.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/config/print_test.go b/internal/config/print_test.go
index 510fdd9..87b6878 100644
--- a/internal/config/print_test.go
+++ b/internal/config/print_test.go
@@ -87,8 +87,7 @@ func TestSpliceLeavesTheRestAlone(t *testing.T) {
}
// TestSpliceRefusesOffsetsOutsideTheSource: a stale end offset - the file
-// changed since the form was parsed - is an error, not a panic (plan 13
-// review F6).
+// changed since the form was parsed - is an error, not a panic.
func TestSpliceRefusesOffsetsOutsideTheSource(t *testing.T) {
src := []byte("(path \"/tmp\")")
for _, c := range []struct{ start, end int }{{0, len(src) + 2}, {8, 4}, {-1, 3}} {