Skip to content

Commit

Permalink
Merge pull request #169 from VeMike/wrong-class-required-as-data-class
Browse files Browse the repository at this point in the history
Check reports correct required data class in Memory Trainer Project
  • Loading branch information
nbirillo authored Jul 9, 2024
2 parents b10a468 + c1d1d34 commit 6853783
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class Test {

history = invokeData.method.invoke(invokeData.instance).toString()
if ("jetbrains.kotlin.course.card.trainer.stat.Stat" in history) {
assert(false) { "The ${statServiceTestClass.name} should be a data class!" }
assert(false) { "The ${statTestClass.name} should be a data class!" }
}
assert(
actualHistory.reversed().toString() == history
Expand Down

0 comments on commit 6853783

Please sign in to comment.