Skip to content

Commit 53a000e

Browse files
Tidying up
1 parent d98c221 commit 53a000e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kubernetes/resource_kubernetes_job_v1.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ func resourceKubernetesJobV1CustomizeDiff(ctx context.Context, d *schema.Resourc
6969
// Only check TTL if present
7070
var oldTTLStr, newTTLStr string
7171
if oldTTLRaw != nil {
72-
oldTTLStr, _ = oldTTLRaw.(string)
72+
oldTTLStr = oldTTLRaw.(string)
7373
}
7474
if newTTLRaw != nil {
75-
newTTLStr, _ = newTTLRaw.(string)
75+
newTTLStr = newTTLRaw.(string)
7676
}
7777

7878
oldTTLInt, err := strconv.Atoi(oldTTLStr)

0 commit comments

Comments
 (0)