summaryrefslogtreecommitdiff
path: root/tests/actions/package/localpkg/bar/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/actions/package/localpkg/bar/src/main.cpp')
-rw-r--r--tests/actions/package/localpkg/bar/src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/actions/package/localpkg/bar/src/main.cpp b/tests/actions/package/localpkg/bar/src/main.cpp
index 1bee1b2ad..0102fba75 100644
--- a/tests/actions/package/localpkg/bar/src/main.cpp
+++ b/tests/actions/package/localpkg/bar/src/main.cpp
@@ -1,10 +1,10 @@
-#include "interface.h"
+#include "foo.h"
#include <iostream>
using namespace std;
int main(int argc, char** argv)
{
- cout << "add(1, 2) = " << add(1, 2) << endl;
+ cout << "foo(1, 2) = " << foo(1, 2) << endl;
return 0;
}