You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2018/09/08 22:23:23 UTC

[directory-studio] branch master updated: Fix test

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

seelmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-studio.git


The following commit(s) were added to refs/heads/master by this push:
     new a6e66bc  Fix test
a6e66bc is described below

commit a6e66bcd5d089604ad31b288d36b7374689aa72b
Author: Stefan Seelmann <ma...@stefan-seelmann.de>
AuthorDate: Sun Sep 9 00:23:13 2018 +0200

    Fix test
---
 .../apache/directory/studio/test/integration/ui/ImportExportTest.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/ImportExportTest.java b/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/ImportExportTest.java
index d66693d..c4fda3c 100644
--- a/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/ImportExportTest.java
+++ b/tests/test.integration.ui/src/main/java/org/apache/directory/studio/test/integration/ui/ImportExportTest.java
@@ -326,7 +326,6 @@ public class ImportExportTest extends AbstractLdapTestUnit
         importWizardBot.typeFile( destFile );
         importWizardBot.clickFinishButton();
 
-        Thread.sleep( 10000 );
         browserViewBot.waitForEntry( "DIT", "Root DSE", "ou=system", "ou=users", "cn=U0034692" );
         browserViewBot.selectEntry( "DIT", "Root DSE", "ou=system", "ou=users", "cn=U0034692" );
 
@@ -337,6 +336,6 @@ public class ImportExportTest extends AbstractLdapTestUnit
         assertTrue( entryEditorBot.getAttributeValues().contains( "description: account#oldUserID#ABC123" ) );
         assertTrue( entryEditorBot.getAttributeValues()
             .contains( "description: person#homeEmailAddress#jhon.doe@apache.com" ) );
-        assertTrue( entryEditorBot.getAttributeValues().contains( "description: Thöis ås a täst yes" ) );
+        assertTrue( entryEditorBot.getAttributeValues().contains( "description: Th\u00f6is \u00e5s a t\u00e4st yes" ) );
     }
 }