Skip to content

Commit 3fc3bc0

Browse files
committed
Clang format
1 parent 949061a commit 3fc3bc0

2 files changed

Lines changed: 4 additions & 10 deletions

File tree

test/windows/wslc/e2e/WSLCE2EContainerInspectTests.cpp

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,7 @@ class WSLCE2EContainerInspectTests
6161
WSLC_TEST_METHOD(WSLCE2E_Container_Inspect_ContainerNotFound)
6262
{
6363
auto result = RunWslc(std::format(L"container inspect {}", TestContainerName1));
64-
result.Verify(
65-
{.Stdout = L"[]\r\n",
66-
.Stderr = std::format(L"Container '{}' not found.\r\n", TestContainerName1),
67-
.ExitCode = 1});
64+
result.Verify({.Stdout = L"[]\r\n", .Stderr = std::format(L"Container '{}' not found.\r\n", TestContainerName1), .ExitCode = 1});
6865
}
6966

7067
WSLC_TEST_METHOD(WSLCE2E_Container_Inspect_Success)
@@ -153,8 +150,8 @@ class WSLCE2EContainerInspectTests
153150
std::wstring GetAvailableOptions() const
154151
{
155152
std::wstringstream options;
156-
options << L"The following options are available:\r\n" //
157-
<< L" --session Specify the session to use\r\n" //
153+
options << L"The following options are available:\r\n" //
154+
<< L" --session Specify the session to use\r\n" //
158155
<< L" -?,--help Shows help about the selected command\r\n" //
159156
<< L"\r\n";
160157
return options.str();

test/windows/wslc/e2e/WSLCE2EImageInspectTests.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,7 @@ class WSLCE2EImageInspectTests
5151
WSLC_TEST_METHOD(WSLCE2E_Image_Inspect_ImageNotFound)
5252
{
5353
auto result = RunWslc(std::format(L"image inspect {}", InvalidImage.NameAndTag()));
54-
result.Verify(
55-
{.Stdout = L"[]\r\n",
56-
.Stderr = std::format(L"Image '{}' not found.\r\n", InvalidImage.NameAndTag()),
57-
.ExitCode = 1});
54+
result.Verify({.Stdout = L"[]\r\n", .Stderr = std::format(L"Image '{}' not found.\r\n", InvalidImage.NameAndTag()), .ExitCode = 1});
5855
}
5956

6057
WSLC_TEST_METHOD(WSLCE2E_Image_Inspect_Success)

0 commit comments

Comments
 (0)