Skip to content

Commit 4e7d8e4

Browse files
authored
re-trigger the linux foundation checks flow.
changing description to re-trigger the linux foundation checks flow.
1 parent d8f29b9 commit 4e7d8e4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

tests/KubernetesClientConfigurationTests.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -287,29 +287,29 @@ public void DeletedConfigurationFile()
287287
}
288288

289289
/// <summary>
290-
/// Checks Host is loaded from the default configuration file as a string
290+
/// Checks Host is loaded from the default configuration file as string
291291
/// </summary>
292292
[Fact]
293293
public void DefaultConfigurationAsStringLoaded()
294294
{
295295
var txt = File.ReadAllText("assets/kubeconfig.yml");
296-
296+
297297
var cfg = KubernetesClientConfiguration.BuildConfigFromConfigFile(txt, null, null);
298298
Assert.NotNull(cfg.Host);
299-
}
300-
301-
299+
}
300+
301+
302302
/// <summary>
303-
/// Checks Host is loaded from the default configuration file as a stream
303+
/// Checks Host is loaded from the default configuration file as stream
304304
/// </summary>
305305
[Fact]
306306
public void DefaultConfigurationAsStreamLoaded()
307-
{
308-
using (var stream = File.OpenRead("assets/kubeconfig.yml"))
309-
{
310-
var cfg = KubernetesClientConfiguration.BuildConfigFromConfigFile(stream);
311-
Assert.NotNull(cfg.Host);
312-
}
307+
{
308+
using (var stream = File.OpenRead("assets/kubeconfig.yml"))
309+
{
310+
var cfg = KubernetesClientConfiguration.BuildConfigFromConfigFile(stream);
311+
Assert.NotNull(cfg.Host);
312+
}
313313
}
314314
}
315315
}

0 commit comments

Comments
 (0)