Skip to content

Commit

Permalink
Update expected type of expiration time (hashicorp#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmy-btn authored and danawillow committed Jul 25, 2017
1 parent 91d033c commit e1b72ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/resource_bigquery_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func resourceTable(d *schema.ResourceData, meta interface{}) (*bigquery.Table, e
}

if v, ok := d.GetOk("expiration_time"); ok {
table.ExpirationTime = v.(int64)
table.ExpirationTime = int64(v.(int))
}

if v, ok := d.GetOk("friendly_name"); ok {
Expand Down

0 comments on commit e1b72ce

Please sign in to comment.