Skip to content

Commit 17a679b

Browse files
committed
[libc][test] Adjust header paths in tests
Since `index_test.cpp` and `rindex_test.cpp` now reside in /strings, adjust some header paths accordingly.
1 parent 67bd04f commit 17a679b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libc/test/src/strings/index_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "StrchrTest.h"
9+
#include "test/src/string/StrchrTest.h"
1010

11-
#include "src/string/index.h"
11+
#include "src/strings/index.h"
1212
#include "test/UnitTest/Test.h"
1313

1414
STRCHR_TEST(Index, LIBC_NAMESPACE::index)

libc/test/src/strings/rindex_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "StrchrTest.h"
9+
#include "test/src/string/StrchrTest.h"
1010

11-
#include "src/string/rindex.h"
11+
#include "src/strings/rindex.h"
1212
#include "test/UnitTest/Test.h"
1313

1414
STRRCHR_TEST(Rindex, LIBC_NAMESPACE::rindex)

0 commit comments

Comments
 (0)