From 88757ef736987f23ca9404a1e0e71f04e35132e4 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Tue, 11 Feb 2020 22:20:47 +0100 Subject: Added tests for job package --- job/job.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'job/job.go') diff --git a/job/job.go b/job/job.go index e15b2eb..4241844 100644 --- a/job/job.go +++ b/job/job.go @@ -10,5 +10,5 @@ type Job struct { } func (job Job) String() string { - return fmt.Sprintf("Name: \"%s\", Timestamp: \"%d\", Success: \"%t\"", job.Name, job.Timestamp, job.Success) + return fmt.Sprintf("Job { Name: \"%s\", Timestamp: \"%d\", Success: \"%t\" }", job.Name, job.Timestamp, job.Success) } -- cgit v1.2.3