Skip to content

Commit f75316b

Browse files
committed
Fix SpaceAroundOperator warning from CodeNarc.
@see http://codenarc.sourceforge.net/codenarc-rules-formatting.html#SpaceAroundOperator No functional changes.
1 parent b4ebbbc commit f75316b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/groovy/ru/mystamps/web/service/SiteServiceImplTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ class SiteServiceImplTest extends Specification {
215215
given:
216216
String method = 'PROPFIND'
217217
and:
218-
String exceptedMethod = method.take(Db.SuspiciousActivity.METHOD_LENGTH-3) + '...'
218+
String exceptedMethod = method.take(Db.SuspiciousActivity.METHOD_LENGTH - 3) + '...'
219219
when:
220220
serviceImpl.logEvent(TEST_TYPE, TEST_PAGE, method, null, null, null, TEST_USER_AGENT, null)
221221
then:

0 commit comments

Comments
 (0)