Skip to content

Commit

Permalink
Fix build errors Name contains characters which can cause problems on…
Browse files Browse the repository at this point in the history
… Windows
  • Loading branch information
Patil2099 committed Aug 21, 2021
1 parent 3ab6ec4 commit 78498b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class DateTimePropertiesSuffixRuleTest {
private val rule = DateTimePropertiesSuffixRule(rulesConfig)

@Test
fun `rule should pass with correct "date-time" fields`() {
fun `rule should pass with correct 'date-time' fields`() {
@Language("YAML")
val content = """
openapi: '3.0.1'
Expand Down Expand Up @@ -43,7 +43,7 @@ class DateTimePropertiesSuffixRuleTest {
}

@Test
fun `rule should pass with correct "date" fields`() {
fun `rule should pass with correct 'date' fields`() {
@Language("YAML")
val content = """
openapi: '3.0.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class EnumValueTypeTest {
private val rule = EnumValueTypeRule()

@Test
fun `fail validation if "x-extensible-enum" has a "string" type`() {
fun `fail validation if 'x-extensible-enum' has a "string" type`() {
@Language("YAML")
val spec = """
openapi: 3.0.1
Expand Down

0 comments on commit 78498b1

Please sign in to comment.