File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
main/scala/hmda/validation/engine/lar
test/scala/hmda/validation/engine/lar Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package hmda.validation.engine.lar
2
2
3
3
// See https://www.consumerfinance.gov/eregulations/1003-C/2015-26607_20180101#1003-C-1
4
4
5
- object ULIValidation {
5
+ object ULI {
6
6
7
7
val conversionTable = Map (
8
8
" a" -> 10 ,
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ package hmda.validation.engine.lar
2
2
3
3
import org .scalatest .{ MustMatchers , WordSpec }
4
4
5
- class ULIValidationSpec extends WordSpec with MustMatchers {
5
+ class ULISpec extends WordSpec with MustMatchers {
6
6
7
7
" A ULI Validation" must {
8
8
" Produce valid check digit" in {
9
9
val uli = " 10Bx939c5543TqA1144M999143X"
10
- ULIValidation .checkDigit(uli) mustBe " 10Bx939c5543TqA1144M999143X38"
10
+ ULI .checkDigit(uli) mustBe " 10Bx939c5543TqA1144M999143X38"
11
11
}
12
12
}
13
13
}
You can’t perform that action at this time.
0 commit comments