Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix path for TMX DTD
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Jul 22, 2013
1 parent c3f41b3 commit a076989
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -203,7 +203,7 @@ private Document writeToXmlWithValidation(StreamingOutput output) throws IOExcep
private void assertValidTMX(String xml) throws MalformedURLException, SAXException
{
StringReader reader = new StringReader(xml);
String systemID = getClass().getResource("/org/zanata/tmx14.dtd").toString();
String systemID = getClass().getResource("/org/zanata/xml/tmx14.dtd").toString();
String doctype = "tmx";
Validator v = new Validator(reader, systemID, doctype);
assertTrue(v.toString(), v.isValid());
Expand Down

0 comments on commit a076989

Please sign in to comment.