diff options
author | Julien Dessaux | 2020-02-11 22:20:47 +0100 |
---|---|---|
committer | Julien Dessaux | 2020-02-11 22:21:29 +0100 |
commit | 88757ef736987f23ca9404a1e0e71f04e35132e4 (patch) | |
tree | e912e985ffe0bf83fcfb61227ec7c5d7dfdf9ce8 /job/job.go | |
parent | Added LICENSE (diff) | |
download | bareos-zabbix-check-88757ef736987f23ca9404a1e0e71f04e35132e4.tar.gz bareos-zabbix-check-88757ef736987f23ca9404a1e0e71f04e35132e4.tar.bz2 bareos-zabbix-check-88757ef736987f23ca9404a1e0e71f04e35132e4.zip |
Added tests for job package
Diffstat (limited to '')
-rw-r--r-- | job/job.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) } |