Commit 34d5de7
committed
ci: fix curl_helpers.hpp include path in three hook tests
Three test files included curl_helpers.hpp via the repo-rooted path
"test/integ/curl_helpers.hpp", but the build's -I list only adds
"-I../../test" (the test source dir) — there is no -I./. that would
resolve the leading "test/" component. The build fails with "No
such file or directory" on every lane that actually builds tests.
Switch to "./curl_helpers.hpp", matching the convention used by every
other test in test/integ/ (e.g. authentication.cpp's
#include "./test_utils.hpp").1 parent fdee3d7 commit 34d5de7
3 files changed
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
32 | | - | |
| 32 | + | |
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| |||
0 commit comments