Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2007-06-20 16:50:39 +0000
committerspingel2007-06-20 16:50:39 +0000
commit9d9f59f39bd26ea41a3ed1430b7ed8e5935ab7c3 (patch)
tree0b95f966869de9118c3d8286a2364f34b0e81082 /org.eclipse.mylyn.trac.tests
parent1ec9c0b88d83ac55fbed48fc494d3dca6d0167e9 (diff)
downloadorg.eclipse.mylyn.tasks-9d9f59f39bd26ea41a3ed1430b7ed8e5935ab7c3.tar.gz
org.eclipse.mylyn.tasks-9d9f59f39bd26ea41a3ed1430b7ed8e5935ab7c3.tar.xz
org.eclipse.mylyn.tasks-9d9f59f39bd26ea41a3ed1430b7ed8e5935ab7c3.zip
NEW - bug 191114: provide HTML-based widget for rendering formatted wiki text in ticket description
https://bugs.eclipse.org/bugs/show_bug.cgi?id=191114
Diffstat (limited to 'org.eclipse.mylyn.trac.tests')
-rw-r--r--org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/TracXmlRpcTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/TracXmlRpcTest.java b/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/TracXmlRpcTest.java
index ce8fc6680..e5dc60a58 100644
--- a/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/TracXmlRpcTest.java
+++ b/org.eclipse.mylyn.trac.tests/src/org/eclipse/mylyn/trac/tests/TracXmlRpcTest.java
@@ -265,10 +265,10 @@ public class TracXmlRpcTest extends TestCase {
public void testGetTicketUmlaute() throws XmlRpcException, IOException {
Map<String, Object> attributes = new Hashtable<String, Object>();
- int id = createTicket("summary���", "���", attributes);
+ int id = createTicket("summarya\u0308O\u030b", "\u00d8", attributes);
- attributes.put("summary", "summary���");
- attributes.put("description", "���");
+ attributes.put("summary", "summarya\u0308O\u030b");
+ attributes.put("description", "\u00d8");
Object[] ticket = (Object[]) call("ticket.get", id);
assertTicketHasAttributes(attributes, id, ticket);

Back to the top