aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Merry <alex.merry@kde.org>2014-12-07 18:44:54 +0000
committerAlex Merry <alex.merry@kde.org>2014-12-07 18:44:54 +0000
commitb5f3c66c8182e2ca2d0670d3e0962bc215fea220 (patch)
tree5ed7a37bda6c1ac8aa72a2d42b3e672940dc3faa /tests
parent81627ad86d3d7d5e5a7d130dfc746d5b1b58cbe7 (diff)
downloadextra-cmake-modules-b5f3c66c8182e2ca2d0670d3e0962bc215fea220.tar.gz
extra-cmake-modules-b5f3c66c8182e2ca2d0670d3e0962bc215fea220.tar.bz2
Fix ECMSetupVersionTest/new_explicit_header_abspath
The #include in the main.c file did not match the generated header file name, so it was actually incorrectly including the header from another test. BUG: 341576
Diffstat (limited to 'tests')
-rw-r--r--tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c b/tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c
index d7168a79..7c3c781e 100644
--- a/tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c
+++ b/tests/ECMSetupVersionTest/new_explicit_header_abspath/main.c
@@ -1,4 +1,4 @@
-#include <ecm_old_header_abspath_version.h>
+#include <ecm_new_explicit_header_abspath_version.h>
#include <string.h>
#include <stdio.h>