diff --git a/dlls/jscript/tests/activex.c b/dlls/jscript/tests/activex.c index 1508ca05918..dc90d91f87f 100644 --- a/dlls/jscript/tests/activex.c +++ b/dlls/jscript/tests/activex.c @@ -39,9 +39,6 @@ static const CLSID CLSID_JScript = #define SET_EXPECT(func) \ expect_ ## func = TRUE -#define SET_CALLED(func) \ - called_ ## func = TRUE - #define CHECK_EXPECT2(func) \ do { \ ok(expect_ ##func, "unexpected call " #func "\n"); \ diff --git a/dlls/jscript/tests/jscript.c b/dlls/jscript/tests/jscript.c index 7c81328cb08..c453971a8b4 100644 --- a/dlls/jscript/tests/jscript.c +++ b/dlls/jscript/tests/jscript.c @@ -38,9 +38,6 @@ static const CLSID CLSID_JScript = #define SET_EXPECT(func) \ expect_ ## func = TRUE -#define SET_CALLED(func) \ - called_ ## func = TRUE - #define CHECK_EXPECT2(func) \ do { \ ok(expect_ ##func, "unexpected call " #func "\n"); \ diff --git a/dlls/jscript/tests/run.c b/dlls/jscript/tests/run.c index e5bd072b60c..f83cedd30f9 100644 --- a/dlls/jscript/tests/run.c +++ b/dlls/jscript/tests/run.c @@ -36,9 +36,6 @@ static const CLSID CLSID_JScript = #define SET_EXPECT(func) \ expect_ ## func = TRUE -#define SET_CALLED(func) \ - called_ ## func = TRUE - #define CHECK_EXPECT2(func) \ do { \ ok(expect_ ##func, "unexpected call " #func "\n"); \