Skip to content

Commit

Permalink
Fix test on challenge branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Fasching authored and fasmat committed Mar 1, 2024
1 parent 577bcdc commit 2e03912
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions challenge02/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package challenge02
type Context interface {
}

type emptyCtx struct{}
type emptyCtx int

func (e *emptyCtx) String() string {
switch e {
Expand All @@ -21,9 +21,9 @@ var (
)

func TODO() Context {
return nil
return todo
}

func Background() Context {
return nil
return background
}

0 comments on commit 2e03912

Please sign in to comment.