Skip to content

Commit 362b662

Browse files
committed
formatting.
1 parent 88aa2d1 commit 362b662

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ratpack-guice/src/test/groovy/ratpack/guice/GuiceRegistrySpec.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class GuiceRegistrySpec extends Specification {
3030

3131
Injector injector = Mock(Injector)
3232
@Delegate
33-
Registry registry = ratpack.guice.Guice.registry(injector)
33+
Registry registry = Guice.registry(injector)
3434

3535
// Used to back the impl of injector modk methods
3636
Injector realInjector
@@ -128,8 +128,8 @@ class GuiceRegistrySpec extends Specification {
128128
expect:
129129
otherRegistry.equals(registry)
130130
registry.equals(otherRegistry)
131-
registry.equals(null) == false
132-
registry.equals(new Object()) == false
131+
!registry.equals(null)
132+
!registry.equals(new Object())
133133
registry.equals(registry)
134134
otherRegistry.hashCode() == registry.hashCode()
135135
}

0 commit comments

Comments
 (0)