@@ -109,7 +109,7 @@ class TimeBasedSimpleValueFactoryTest extends Specification {
109109 )
110110
111111 expect :
112- Object . equals( factory. buildModel(data), expected)
112+ factory. buildModel(data). equals( expected)
113113 }
114114
115115 def " The simple time based value factory builds correct heat and apparent power value" () {
@@ -129,7 +129,7 @@ class TimeBasedSimpleValueFactoryTest extends Specification {
129129 )
130130
131131 expect :
132- Object . equals( factory. buildModel(data), expected)
132+ factory. buildModel(data). equals( expected)
133133 }
134134
135135 def " The simple time based value factory builds correct heat and active power value" () {
@@ -147,7 +147,7 @@ class TimeBasedSimpleValueFactoryTest extends Specification {
147147 )
148148
149149 expect :
150- Object . equals( factory. buildModel(data), expected)
150+ factory. buildModel(data). equals( expected)
151151 }
152152
153153 def " The simple time based value factory builds correct heat demand value" () {
@@ -164,7 +164,7 @@ class TimeBasedSimpleValueFactoryTest extends Specification {
164164 )
165165
166166 expect :
167- Object . equals( factory. buildModel(data), expected)
167+ factory. buildModel(data). equals( expected)
168168 }
169169
170170 def " The simple time based value factory builds correct apparent power value" () {
@@ -182,7 +182,7 @@ class TimeBasedSimpleValueFactoryTest extends Specification {
182182 )
183183
184184 expect :
185- Object . equals( factory. buildModel(data), expected)
185+ factory. buildModel(data). equals( expected)
186186 }
187187
188188 def " The simple time based value factory builds correct active power value" () {
@@ -199,7 +199,7 @@ class TimeBasedSimpleValueFactoryTest extends Specification {
199199 )
200200
201201 expect :
202- Object . equals( factory. buildModel(data), expected)
202+ factory. buildModel(data). equals( expected)
203203 }
204204
205205 def " The simple time based value factory throws a FactoryException upon build request, if a class is not supported" () {
0 commit comments