[Notice] Announcing the End of Demo Server [Read me]

test: Fix url encoding bug
The test failed since Play 2.2.6 is introduced because of encoding problem that "%2F" is encoded to "%252F" unintetionally in url.
@a536282e33b3f1e0cd31282a42736480db981c03
--- test/actors/CommitsNotificationActorTest.java
+++ test/actors/CommitsNotificationActorTest.java
... | ... | @@ -38,7 +38,7 @@ |
38 | 38 |
// Given |
39 | 39 |
String ownerLoginid = "whiteship"; |
40 | 40 |
String proejctName = "yobi"; |
41 |
- String branchName = URLEncoder.encode("refs/heads/feature/review", "UTF-8"); |
|
41 |
+ String branchName = "refs/heads/feature/review"; |
|
42 | 42 |
|
43 | 43 |
// When |
44 | 44 |
String url = routes.CodeApp.codeBrowserWithBranch(ownerLoginid, proejctName, branchName, "").url(); |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?