You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by sk...@apache.org on 2014/05/19 12:34:38 UTC

[40/45] git commit: Fixing encoding for a test on Windows

Fixing encoding for a test on Windows


Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4/repo
Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4/commit/6f8aef66
Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4/tree/6f8aef66
Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4/diff/6f8aef66

Branch: refs/heads/olingo-266-ref
Commit: 6f8aef66a9baba8edb454cdfc3f1e2ebfb04e1bc
Parents: 0ef9b0f
Author: Francesco Chicchiriccò <--global>
Authored: Sat May 17 16:27:04 2014 +0200
Committer: Stephan Klevenz <st...@sap.com>
Committed: Mon May 19 12:33:32 2014 +0200

----------------------------------------------------------------------
 .../test/java/org/apache/olingo/fit/proxy/v4/AsyncTestITCase.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/6f8aef66/fit/src/test/java/org/apache/olingo/fit/proxy/v4/AsyncTestITCase.java
----------------------------------------------------------------------
diff --git a/fit/src/test/java/org/apache/olingo/fit/proxy/v4/AsyncTestITCase.java b/fit/src/test/java/org/apache/olingo/fit/proxy/v4/AsyncTestITCase.java
index b0cbbdd..3295824 100644
--- a/fit/src/test/java/org/apache/olingo/fit/proxy/v4/AsyncTestITCase.java
+++ b/fit/src/test/java/org/apache/olingo/fit/proxy/v4/AsyncTestITCase.java
@@ -60,7 +60,7 @@ public class AsyncTestITCase extends AbstractTestITCase {
 
   @Test
   public void updateEntity() throws InterruptedException {
-    final String randomFirstName = RandomStringUtils.random(10);
+    final String randomFirstName = RandomStringUtils.random(10, "abcedfghijklmnopqrstuvwxyz");
 
     Person person = container.getPeople().get(1);
     person.setFirstName(randomFirstName);