Skip to content

Commit

Permalink
Merge pull request #56 from doug-precocity/issue55-failingWindowsTests
Browse files Browse the repository at this point in the history
Issue55 failing windows tests
  • Loading branch information
cortinico committed Aug 1, 2019
2 parents bdc9e0f + a1ca287 commit 14a4279
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugin/src/test/java/com/yelp/codegen/KotlinGeneratorTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import org.junit.Assert.assertFalse
import org.junit.Assert.assertNotNull
import org.junit.Assert.assertTrue
import org.junit.Test
import java.io.File

class KotlinGeneratorTest {

Expand Down Expand Up @@ -153,7 +154,8 @@ class KotlinGeneratorTest {
val generator = KotlinGenerator()
generator.additionalProperties()[GROUP_ID] = "com.yelp"
generator.additionalProperties()[ARTIFACT_ID] = "test"
assertTrue(generator.modelFileFolder().endsWith("com/yelp/test/models"))
val sep:String = File.separator
assertTrue(generator.modelFileFolder().endsWith("com${sep}yelp${sep}test${sep}models"))
}

@Test
Expand Down

0 comments on commit 14a4279

Please sign in to comment.