From 948bf91ad857793df643b387ea183ef7035e3d61 Mon Sep 17 00:00:00 2001 From: wisberg Date: Tue, 5 Oct 2004 20:05:36 +0000 Subject: [PATCH] static ref to static variable --- build/testsrc/BuildModuleTests.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/testsrc/BuildModuleTests.java b/build/testsrc/BuildModuleTests.java index 828478f64..8a03cc65e 100644 --- a/build/testsrc/BuildModuleTests.java +++ b/build/testsrc/BuildModuleTests.java @@ -27,7 +27,7 @@ public class BuildModuleTests extends TestCase { /** if true, then replace old headers with new first */ private static final boolean replacing = false; // XXX never to enable again... - /** if any replace failed, halt all */ + /** replace commented out below - if any replace failed, halt all */ private static boolean replaceFailed = false; private static final String BASE_DIR = "../"; @@ -132,9 +132,9 @@ public class BuildModuleTests extends TestCase { int fails = Checklics.runDirect(moduleDir.getPath(), license); if (0 != fails) { if (replacing) { - replaceFailed = true; + BuildModuleTests.replaceFailed = true; } - assertTrue(label + " fails", false); + assertTrue(label + " fails", !BuildModuleTests.replaceFailed); } } -- 2.39.5