Skip to content

Commit 5faaa26

Browse files
committed
Remove comments from SuppressStdout test
Signed-off-by: Drew Lewis <[email protected]>
1 parent db06ffb commit 5faaa26

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/utl/test/cpp/TestSuppressStdout.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ TEST(Utl, SuppressStdout)
2424
std::cerr << "Temporary file: " << file_path << "\n";
2525

2626
// 3. Create the file and get the file descriptor (fd)
27-
// O_RDWR: Open for reading and writing
28-
// O_CREAT: Create the file if it doesn't exist
29-
// O_EXCL: Ensure that this call creates the file
30-
// 0600: Permissions (read/write for owner only)
3127
int fd = open(file_path.c_str(), O_WRONLY | O_CREAT);
3228
ASSERT_NE(fd, -1);
3329

0 commit comments

Comments
 (0)