File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
.test/src/test/kotlin/com/igorwojda/challenge Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -65,17 +65,17 @@ class ProjectConsistencyTest {
65
65
companion object {
66
66
@JvmStatic
67
67
fun getSolutionFiles () = TestUtils
68
- .getChellengeDirectories ()
68
+ .challengeDirectories ()
69
69
.map { KotlinParserUtils .getChallengeKtFile(it, ChallengeFile .SOLUTIONS_KT ) }
70
70
71
71
@JvmStatic
72
72
fun getChallenge () = TestUtils
73
- .getChellengeDirectories ()
73
+ .challengeDirectories ()
74
74
.map { KotlinParserUtils .getChallengeKtFile(it, ChallengeFile .CHALLENGE_KT ) }
75
75
76
76
@JvmStatic
77
77
fun getChallengeRequiredFilePaths () = TestUtils
78
- .getChellengeDirectories ()
78
+ .challengeDirectories ()
79
79
.flatMap { getProjectRequiredFiles(it) }
80
80
81
81
private fun getProjectRequiredFiles (challengeDirectory : File ) = ChallengeFile
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ object TestUtils {
15
15
/* *
16
16
* Return list of project names
17
17
*/
18
- fun getChellengeDirectories (): List <File > {
18
+ fun challengeDirectories (): List <File > {
19
19
val path = " ${repoRootDirectoryFile.path} /src/test/kotlin/com/igorwojda"
20
20
val directory = File (path)
21
21
val miscDirectoryName = " misc"
You can’t perform that action at this time.
0 commit comments