Skip to content

Commit 1870538

Browse files
committed
GemTalk/Rowan#953: ssome of the methods are class methods ... fix tests
1 parent f8ee25d commit 1870538

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/RowanSample9V4-Tests/RowanSample9V4TestCase.class.st

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ RowanSample9V4TestCase >> test5 [ self assert: RowanSample9V4Class1 new _123abc
2424
]
2525

2626
{ #category : 'tests' }
27-
RowanSample9V4TestCase >> test6 [ self assert: RowanSample9V4Class1 new _ABC123
27+
RowanSample9V4TestCase >> test6 [ self assert: RowanSample9V4Class1 _ABC123
2828
]
2929

3030
{ #category : 'tests' }
31-
RowanSample9V4TestCase >> test7 [ self assert: RowanSample9V4Class1 new _abc123
31+
RowanSample9V4TestCase >> test7 [ self assert: RowanSample9V4Class1 _abc123
3232
]
3333

3434
{ #category : 'tests' }
35-
RowanSample9V4TestCase >> test8 [ self assert: RowanSample9V4Class1 new a_bc123
35+
RowanSample9V4TestCase >> test8 [ self assert: RowanSample9V4Class1 a_bc123
3636
]

0 commit comments

Comments
 (0)