Skip to content

Commit

Permalink
Add missing .ksy suffix in error message to the name of file that c…
Browse files Browse the repository at this point in the history
…ould not be located

Also all other error messages starts with lower case, so adjust that's too

Fixes the test:
```
[info] - meta_imports_abs_unknown *** FAILED ***
[info]   meta_imports_abs_unknown: /meta/imports/0:
[info]   	error: Unable to find 'unknown_absolute_name' in import search paths, using: List()
[info]    did not equal meta_imports_abs_unknown.ksy: /meta/imports/0:
[info]   	error: Unable to find 'unknown_absolute_name' in import search paths, using: List() (SimpleMatchers.scala:34)
```
  • Loading branch information
Mingun committed Mar 21, 2024
1 parent c21d54d commit bb717cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class JavaClassSpecs(relPath: String, absPaths: Seq[String], firstSpec: ClassSpe
}
}
}
throw new FileNotFoundException(s"Unable to find '$name' in import search paths, using: $absPaths")
throw new FileNotFoundException(s"unable to find '$name.ksy' in import search paths, using: $absPaths")
}
}

Expand Down

0 comments on commit bb717cb

Please sign in to comment.