Skip to content

Commit 7c80e36

Browse files
committed
Add JIRA links to Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@589423 13f79535-47bb-0310-9956-ffa450edef68
1 parent a50a203 commit 7c80e36

1 file changed

Lines changed: 12 additions & 8 deletions

File tree

src/test/org/apache/commons/codec/language/SoundexTest.java

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -377,15 +377,19 @@ public void testUsMappingEWithAcute() {
377377
}
378378
}
379379

380-
// This test fails.
381-
public void testUsEnglishStatic()
382-
{
383-
assertEquals( Soundex.US_ENGLISH.soundex( "Williams" ), "W452" );
380+
/**
381+
* https://issues.apache.org/jira/browse/CODEC-54
382+
* https://issues.apache.org/jira/browse/CODEC-56
383+
*/
384+
public void testUsEnglishStatic() {
385+
assertEquals(Soundex.US_ENGLISH.soundex("Williams"), "W452");
384386
}
385387

386-
// This test succeeds.
387-
public void testNewInstance()
388-
{
389-
assertEquals( new Soundex().soundex( "Williams" ), "W452" );
388+
/**
389+
* https://issues.apache.org/jira/browse/CODEC-54
390+
* https://issues.apache.org/jira/browse/CODEC-56
391+
*/
392+
public void testNewInstance() {
393+
assertEquals(new Soundex().soundex("Williams"), "W452");
390394
}
391395
}

0 commit comments

Comments
 (0)