Skip to content

Commit ee8edd7

Browse files
committed
GemTalk/Rowan#953: methods should return true, so tests pass
1 parent b9598d2 commit ee8edd7

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RwTestProjectLibraryIndexCard {
3434
953
3535
],
3636
#gemstoneIssues : [ ],
37-
#rowanSHA : 'b0e403d82'
37+
#rowanSHA : '3d8a11eae'
3838
}
3939
```
4040

index_0089.ston

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ RwTestProjectLibraryIndexCard {
99
953
1010
],
1111
#gemstoneIssues : [ ],
12-
#rowanSHA : 'b0e403d82'
12+
#rowanSHA : '3d8a11eae'
1313
}

rowan/src/RowanSample9V2-Core/RowanSample9V2Class1.class.st

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,28 @@ Class {
1212

1313
{ #category : 'accessing' }
1414
RowanSample9V2Class1 class >> _123abc [
15-
^self
15+
^true
1616
]
1717

1818
{ #category : 'accessing' }
19-
RowanSample9V2Class1 class >> _abc123 [ ^self
19+
RowanSample9V2Class1 class >> _abc123 [ ^true
2020
]
2121

2222
{ #category : 'accessing' }
23-
RowanSample9V2Class1 class >> _ABC123 [ ^self
23+
RowanSample9V2Class1 class >> _ABC123 [ ^true
2424
]
2525

2626
{ #category : 'accessing' }
27-
RowanSample9V2Class1 class >> a_bc123 [ ^self
27+
RowanSample9V2Class1 class >> a_bc123 [ ^true
2828
]
2929

3030
{ #category : 'accessing' }
3131
RowanSample9V2Class1 >> _123Abc [
32-
^self
32+
^true
3333
]
3434

3535
{ #category : 'accessing' }
36-
RowanSample9V2Class1 >> A_bc123 [ ^self
36+
RowanSample9V2Class1 >> A_bc123 [ ^true
3737
]
3838

3939
{ #category : 'accessing' }

0 commit comments

Comments
 (0)