Skip to content

Commit

Permalink
fix: fix new line issues
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Jul 28, 2023
1 parent 65955cc commit ea74c90
Showing 1 changed file with 10 additions and 8 deletions.
Expand Up @@ -27,10 +27,11 @@ class TestContextProvider : ChatContextProvider {
items.add(
ChatContextItem(
TestContextProvider::class,
"""You MUST use should_xx style for test method name.
| You MUST use MockMvc and test API only.
| You MUST use given-when-then style.
| You MUST use should_xx style for test method name.""".trimMargin()
"""
|You MUST use should_xx style for test method name.
|You MUST use MockMvc and test API only.
|You MUST use given-when-then style.
|You MUST use should_xx style for test method name.""".trimMargin()
)
)
}
Expand All @@ -39,10 +40,11 @@ class TestContextProvider : ChatContextProvider {
items.add(
ChatContextItem(
TestContextProvider::class,
"""You MUST use should_xx style for test method name.
| You MUST use Mockito and test service only.
| You MUST use given-when-then style.
| You MUST use should_xx style for test method name. """.trimMargin()
"""
|You MUST use should_xx style for test method name.
|You MUST use Mockito and test service only.
|You MUST use given-when-then style.
|You MUST use should_xx style for test method name. """.trimMargin()
)
)
}
Expand Down

0 comments on commit ea74c90

Please sign in to comment.