Skip to content

Commit baf7872

Browse files
committed
fix SA1413
1 parent 5ef2ca6 commit baf7872

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/KubernetesClient.Tests/WatchTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ public async Task WatcherIntegrationTest()
587587
Command = new List<string>() { "/bin/bash", "-c", "--" },
588588
Args = new List<string>()
589589
{
590-
"trap : TERM INT; sleep infinity & wait"
590+
"trap : TERM INT; sleep infinity & wait",
591591
},
592592
},
593593
},

tests/KubernetesClient.Tests/YamlTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ public void WritePropertyNamedReadOnlyToString()
157157
{
158158
new V1VolumeMount
159159
{
160-
Name = "vm1", MountPath = "/vm1", ReadOnlyProperty = true
160+
Name = "vm1", MountPath = "/vm1", ReadOnlyProperty = true,
161161
},
162162
new V1VolumeMount
163163
{
164-
Name = "vm2", MountPath = "/vm2", ReadOnlyProperty = false
164+
Name = "vm2", MountPath = "/vm2", ReadOnlyProperty = false,
165165
},
166166
},
167167
},

0 commit comments

Comments
 (0)