X-Git-Url: https://git.korewanetadesu.com/?p=go-signalcontext.git;a=blobdiff_plain;f=context_test.go;h=bc755a4ec5b818a7cde4bdaf2d44a6008397b3d9;hp=0fa10d79e8606da743a75df491607544c39e1618;hb=ee7aee79cc9e3e3ccf2929c4eb50ac485ad3c915;hpb=6d43b73af18d23a4cab88dccf8d93a8eb423d2ed diff --git a/context_test.go b/context_test.go index 0fa10d7..bc755a4 100644 --- a/context_test.go +++ b/context_test.go @@ -64,7 +64,7 @@ func TestCancelAfterSignal(t *testing.T) { assert.Equal(t, Error{syscall.SIGUSR2}, ctx.Err()) } -func TestPrecompleted(t *testing.T) { +func TestPrecanceled(t *testing.T) { parent, cancel := context.WithCancel(context.Background()) cancel() <-parent.Done() @@ -75,7 +75,7 @@ func TestPrecompleted(t *testing.T) { case _, ok := <-ctx.Done(): assert.False(t, ok, "Done() should be closed") default: - assert.False(t, true, "context should be complete") + assert.False(t, true, "Done() should be closed") } assert.Equal(t, context.Canceled, ctx.Err()) } @@ -121,7 +121,7 @@ func BenchmarkCanceledAsChild(b *testing.B) { } } -func BenchmarkPrecompleted(b *testing.B) { +func BenchmarkPrecanceled(b *testing.B) { parent, cancel := context.WithCancel(context.Background()) cancel() <-parent.Done()