Details
-
Type: Bug
-
Status: Closed (View Workflow)
-
Priority: Major
-
Resolution: Upstream Problem
-
Affects Version/s: 1.6.1
-
Fix Version/s: None
-
Component/s: o.c.jsword.book.sword
-
Labels:None
-
Environment:
All
Description
TDavid.contains(verse) often returns true for verses that aren't in Psalms.
Here is a test to show the problem:
public void testTDavidContains() throws Exception {
Book tdavid = Books.installed().getBook("TDavid");
Verse verse = VerseFactory.fromString("Prov 19:14");
assertFalse("TDavid contains not working correctly 1", tdavid.contains(verse));
verse = VerseFactory.fromString("Isaiah 55:1");
assertFalse("TDavid contains not working correctly 2", tdavid.contains(verse));
}
Attachments
Issue Links
- duplicates
-
MOD-109 TDavid repeats itself for many books of the OT
- Closed