Skip to content

Commit e9af916

Browse files
committed
clang-format on test_fchown.cpp
1 parent 74e5658 commit e9af916

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

libc/test/src/unistd/fchown_test.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
//===----------------------------------------------------------------------===//
88

99
#include "src/fcntl/open.h"
10-
#include "src/unistd/fchown.h"
1110
#include "src/unistd/close.h"
11+
#include "src/unistd/fchown.h"
1212
#include "src/unistd/getgid.h"
1313
#include "src/unistd/getuid.h"
1414
#include "src/unistd/unlink.h"
@@ -46,6 +46,5 @@ TEST_F(LlvmLibcFchownTest, FchownSuccess) {
4646

4747
TEST_F(LlvmLibcFchownTest, ChownInvalidFileDescriptor) {
4848
using LIBC_NAMESPACE::testing::ErrnoSetterMatcher::Fails;
49-
ASSERT_THAT(LIBC_NAMESPACE::chown(-1, 1000, 1000),
50-
Fails(ENOENT));
49+
ASSERT_THAT(LIBC_NAMESPACE::chown(-1, 1000, 1000), Fails(ENOENT));
5150
}

0 commit comments

Comments
 (0)