X Tutup
Skip to content

Commit f3a90d3

Browse files
author
Johan Brichau
committed
Fix instvar shadow in testcase and remove code coverage analysis for now
1 parent 8f18b46 commit f3a90d3

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

.smalltalk.ston

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,5 @@ SmalltalkCISpec {
1313
#load : [ 'Tests' ],
1414
#platforms : [ #gemstone ]
1515
}
16-
],
17-
#testing : {
18-
#coverage : {
19-
#packages : [ 'Grease-Core', 'Grease-Pharo.*', 'Grease-Squeak.*', 'Grease-GemStone.*' ]
20-
}
21-
}
16+
]
2217
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
asserting
22
assertAssociations: anOrderedCollection
3-
| associations iterated |
4-
associations := collection associations.
3+
| collAssociations iterated |
4+
collAssociations := collection associations.
55
iterated := Array streamContents: [ :stream |
66
collection associationsDo: [ :each | stream nextPut: each ] ].
7-
self assert: associations size = anOrderedCollection size.
7+
self assert: collAssociations size = anOrderedCollection size.
88
self assert: iterated size = anOrderedCollection size.
99
1 to: anOrderedCollection size do: [ :index |
10-
self assert: (associations at: index) = (anOrderedCollection at: index).
10+
self assert: (collAssociations at: index) = (anOrderedCollection at: index).
1111
self assert: (iterated at: index) = (anOrderedCollection at: index) ]

repository/Grease-Tests-Core.package/GRSmallDictionaryTest.class/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"testDo" : "jf 2/15/2010 16:05",
1515
"newCollection" : "jf 2/15/2010 17:45",
1616
"isKey:equivalentTo:" : "jf 2/15/2010 22:06",
17-
"assertAssociations:" : "jf 2/15/2010 16:05",
17+
"assertAssociations:" : "JohanBrichau 9/10/2017 10:03",
1818
"testKeys" : "jf 2/15/2010 16:05",
1919
"testAddAll" : "jf 2/15/2010 22:58",
2020
"createArbitraryAssociations" : "pmm 9/9/2017 18:40",

repository/Grease-Tests-Core.package/monticello.meta/version

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
X Tutup