Bug 516041 - testConditionBreakpointReturnNonBooleanObject randomly
fails

Moved assert out of finally block to see the original exception.

Change-Id: Ifb49b439031645abddc7acedf191214599aa7f5c
Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
diff --git a/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/breakpoints/ConditionalBreakpointsTests.java b/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/breakpoints/ConditionalBreakpointsTests.java
index 581cde2..d510d2c 100755
--- a/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/breakpoints/ConditionalBreakpointsTests.java
+++ b/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/breakpoints/ConditionalBreakpointsTests.java
@@ -507,10 +507,9 @@
 		IJavaThread thread = null;
 		try {
 			thread = launchToLineBreakpoint(typeName, bp1);
-
+			assertNotNull(thread);
 		}
 		finally {
-			assertNotNull(thread);
 			terminateAndRemove(thread);
 			removeAllBreakpoints();
 		}