From 8dda67ba52ed67cc3e6897849658872c2ef4ddcc Mon Sep 17 00:00:00 2001 From: ruki Date: Wed, 2 Jun 2021 22:54:27 +0800 Subject: add deps for localpackages --- tests/actions/package/localpkg/bar/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/actions/package/localpkg/bar/src/main.cpp') 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 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; } -- cgit v1.3.1