fix tests

This commit is contained in:
Megan Marsh 2019-12-12 15:47:17 -08:00
parent 39fd462b56
commit b2012c7ff3
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ func TestProvisioner_Provision(t *testing.T) {
p := &Provisioner{
Duration: tt.fields.Duration,
}
if err := p.Provision(tt.args.ctx, nil, nil, make(map[interface{}]interface{})); (err != nil) != tt.wantErr {
if err := p.Provision(tt.args.ctx, nil, nil, make(map[string]interface{})); (err != nil) != tt.wantErr {
t.Errorf("Provisioner.Provision() error = %v, wantErr %v", err, tt.wantErr)
}
})