Skip to content

Commit e6f47f2

Browse files
committed
fix spotless
1 parent 04600fe commit e6f47f2

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

remote-config/remote-config-core/src/test/groovy/datadog/remoteconfig/state/ProductStateSpecification.groovy

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,7 @@ class ProductStateSpecification extends Specification {
7474
changed
7575

7676
and: 'operations happen in order: remove config2 FIRST, then apply config1, then commit'
77-
listener.operations == [
78-
'remove:org/ASM_DD/config2/foo',
79-
'accept:org/ASM_DD/config1/foo',
80-
'commit'
81-
]
77+
listener.operations == ['remove:org/ASM_DD/config2/foo', 'accept:org/ASM_DD/config1/foo', 'commit']
8278
}
8379

8480
void 'test ASM_DD with multiple new configs removes before applies all'() {
@@ -222,10 +218,7 @@ class ProductStateSpecification extends Specification {
222218
productListener.operations.findAll { it.startsWith('accept:') }.size() == 2
223219

224220
and: 'configListener only received config1'
225-
configListener.operations == [
226-
'accept:org/ASM_DATA/config1/foo',
227-
'commit'
228-
]
221+
configListener.operations == ['accept:org/ASM_DATA/config1/foo', 'commit']
229222
}
230223

231224
void 'test remove operations cleanup cached data'() {

0 commit comments

Comments
 (0)