This is an automated email from the ASF dual-hosted git repository.

matthiasblaesing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 4da79d0  [NETBEANS-5656] Fix unittests in Database Explorer
     new 152d89c  Merge pull request #2975 from 
matthiasblaesing/fix_tests_after_2935
4da79d0 is described below

commit 4da79d0c10b6359c42441124c35b4d3abfc1bbda
Author: Matthias Bläsing <[email protected]>
AuthorDate: Sun May 23 08:52:09 2021 +0200

    [NETBEANS-5656] Fix unittests in Database Explorer
---
 .../test/unit/src/org/netbeans/modules/db/util/DriverListUtilTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/ide/db/test/unit/src/org/netbeans/modules/db/util/DriverListUtilTest.java 
b/ide/db/test/unit/src/org/netbeans/modules/db/util/DriverListUtilTest.java
index 4243a3b..a151c77 100644
--- a/ide/db/test/unit/src/org/netbeans/modules/db/util/DriverListUtilTest.java
+++ b/ide/db/test/unit/src/org/netbeans/modules/db/util/DriverListUtilTest.java
@@ -588,7 +588,7 @@ public class DriverListUtilTest extends TestCase {
         if (type == null) {
             assertEquals(name, url.getDisplayName());
         } else {
-            assertEquals(name + " / " + type, url.getDisplayName());
+            assertEquals(name + " (" + type + ")", url.getDisplayName());
         }
         
         assertEquals(className, url.getClassName());

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to