diff options
Diffstat (limited to 'job_test.go')
| -rw-r--r-- | job_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/job_test.go b/job_test.go index 27b371d..cf4fc2c 100644 --- a/job_test.go +++ b/job_test.go @@ -29,7 +29,7 @@ func TestJob(t *testing.T) { shipOpt := Mail items := []Printable{printableSample} - c := newClient(t) + c := tNewClient(t) job1, err := c.Print(contact, jobEid, productionDelay, addr, shipOpt, items) require.NoError(t, err) require.NotZero(t, job1.Id) @@ -47,7 +47,7 @@ func TestJob(t *testing.T) { func TestJobs(t *testing.T) { // Create some jobs - c := newClient(t) + c := tNewClient(t) jobParams := []struct { contact string extid string |