Skip to content

Commit

Permalink
Update core/src/test/scala/org/dbpedia/extraction/dataparser/DateTime…
Browse files Browse the repository at this point in the history
…ParserTest.scala

Co-authored-by: Ted Thibodeau Jr <[email protected]>
  • Loading branch information
Meti-Adane and TallTed authored Sep 8, 2024
1 parent d1870a6 commit 56a7c88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -683,9 +683,9 @@ class DateTimeParserTest extends FlatSpec with Matchers
{
parse("am", "xsd:date", "21-ጁላይ-2013 እ.ኤ.አ.") should equal (Some("2013-07-21"))
}
"DateTimeParser" should "parse Gregorian Date september 23 2000 እ.ኤ.አ. and return date 2000-09-23" in
"DateTimeParser" should "parse Gregorian date September 23 2000 እ.ኤ.አ. and return date 2000-09-23" in
{
parse("am", "xsd:date", "september 23 2000 እ.ኤ.አ.") should equal (Some("2000-09-23"))
parse("am", "xsd:date", "September 23 2000 እ.ኤ.አ.") should equal (Some("2000-09-23"))
}
"DateTimeParser" should "parse Gregorian Date 23 ሴፕተምበር 2013 እ.ኤ.አ. and return date 2013-09-23" in
{
Expand Down

0 comments on commit 56a7c88

Please sign in to comment.