Skip to content

Commit

Permalink
travis CI fixes
Browse files Browse the repository at this point in the history
travis CI fixes
  • Loading branch information
katbyte committed Apr 28, 2018
1 parent beb79b8 commit 2c9a46a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions azurerm/helpers/supress/suppress_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package supress

import "testing"
import (
"testing"
)

func TestInternal_Suppress_CaseDifference(t *testing.T) {
cases := []struct {
Expand Down Expand Up @@ -74,8 +76,8 @@ func TestInternal_Supress_Rfc3339Time(t *testing.T) {
Suppress: true,
},
{
TimeA: "2000-01-01T01:23:45+7:00",
TimeB: "2000-01-01T08:23:45Z",
TimeA: "2000-01-01T01:23:45-08:00",
TimeB: "2000-01-01T09:23:45Z",
Suppress: true,
},
}
Expand Down
2 changes: 1 addition & 1 deletion azurerm/resource_arm_scheduler_job.go
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ func resourceArmSchedulerJobCreateUpdate(d *schema.ResourceData, meta interface{
if err != nil {
return fmt.Errorf("Error parsing start time (%s) for job %q (Resource Group %q): %+v", d.Get("start_time"), name, resourceGroup, err)
}
job.Properties.StartTime = &date.Time{startTime}
job.Properties.StartTime = &date.Time{Time: startTime}

//state
if state, ok := d.GetOk("state"); ok {
Expand Down

0 comments on commit 2c9a46a

Please sign in to comment.