File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
ratpack-guice/src/test/groovy/ratpack/guice Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ class GuiceRegistrySpec extends Specification {
30
30
31
31
Injector injector = Mock (Injector )
32
32
@Delegate
33
- Registry registry = ratpack.guice. Guice. registry(injector)
33
+ Registry registry = Guice . registry(injector)
34
34
35
35
// Used to back the impl of injector modk methods
36
36
Injector realInjector
@@ -128,8 +128,8 @@ class GuiceRegistrySpec extends Specification {
128
128
expect :
129
129
otherRegistry. equals(registry)
130
130
registry. equals(otherRegistry)
131
- registry. equals(null ) == false
132
- registry. equals(new Object ()) == false
131
+ ! registry. equals(null )
132
+ ! registry. equals(new Object ())
133
133
registry. equals(registry)
134
134
otherRegistry. hashCode() == registry. hashCode()
135
135
}
You can’t perform that action at this time.
0 commit comments