Skip to main content
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorVeronika Irvine2002-05-21 15:21:06 +0000
committerVeronika Irvine2002-05-21 15:21:06 +0000
commitcb92c335f07a0c953d35de0d66d3c6d9b3a627b0 (patch)
tree5ac57f18eeeffdd419930a0ebcaed4127ba5aef7 /tests
parenteeb0f8a30ea425ea9961eed5e14aaa2f3126f31c (diff)
downloadeclipse.platform.swt-cb92c335f07a0c953d35de0d66d3c6d9b3a627b0.tar.gz
eclipse.platform.swt-cb92c335f07a0c953d35de0d66d3c6d9b3a627b0.tar.xz
eclipse.platform.swt-cb92c335f07a0c953d35de0d66d3c6d9b3a627b0.zip
*** empty log message ***
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Rectangle.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Rectangle.java b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Rectangle.java
index c01f56046f..c37f11e177 100644
--- a/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Rectangle.java
+++ b/tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_graphics_Rectangle.java
@@ -184,7 +184,7 @@ public void test_intersectionLorg_eclipse_swt_graphics_Rectangle(){
assertEquals("Rectangle intersection incorrect", new Rectangle(3, 3, 0, 0), r1.intersection(r2));
r2 = new Rectangle(3, 3, -1, -1);
- assertEquals("Rectangle intersection incorrect", new Rectangle(3, 3, -1, -1), r1.intersection(r2));
+ assertEquals("Rectangle intersection incorrect", new Rectangle(0, 0, 0, 0), r1.intersection(r2));
try {
r1.intersection(null);

Back to the top