Skip to content

Commit

Permalink
more build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmcatee committed Oct 2, 2019
1 parent 14751a4 commit 97c216e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions common/resource/simple_failing_task_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ type simpleFailureTask struct {
j common.Job
}

func (t *simpleFailureTask) Done() {

}

func (t *simpleFailureTask) Status() common.Job {
return t.j
}
Expand Down
4 changes: 4 additions & 0 deletions common/resource/simple_timer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ type SimpleTimer struct {
j common.Job
}

func (t *SimpleTimer) Done() {

}

func (t *SimpleTimer) Status() common.Job {
if t.j.Status == common.STATUS_PAUSED {
tmpData := make([]string, 1)
Expand Down

0 comments on commit 97c216e

Please sign in to comment.