X Tutup
Skip to content

Commit 022659c

Browse files
authored
Merge pull request SeasideSt#193 from SeasideSt/test-fix
Fix test on Windows platforms (make it cross-platform)
2 parents c204e9d + 3cc491a commit 022659c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

repository/Grease-Tests-Core.package/GRPlatformTest.class/instance/testSourceCodeStringOf.st

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ testSourceCodeStringOf
55
sourceCodeString := GRPlatform current sourceCodeStringOf: GRPlatform >> #sourceCodeStringOf:.
66
self
77
assert: sourceCodeString
8-
equals: 'sourceCodeStringOf: aCompiledMethod
8+
equals: (GRPlatform current convertToSmalltalkNewlines:
9+
'sourceCodeStringOf: aCompiledMethod
910
"Return a String with the source code for a compiled method."
1011
11-
self subclassResponsibility'
12+
self subclassResponsibility')

repository/Grease-Tests-Pharo-Core.package/GRPharoPlatformTest.class/instance/testIsPharo.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*Grease-Tests-Pharo-Core
1+
tests
22
testIsPharo
33
self assert: GRPlatform current isPharo.
44
self deny: GRPlatform current isGemStone.

0 commit comments

Comments
 (0)
X Tutup