X Tutup
Skip to content

Commit 31b4870

Browse files
author
Johan Brichau
committed
Fix tests
1 parent d3e13f7 commit 31b4870

File tree

2 files changed

+4
-4
lines changed
  • repository/Grease-Tests-Pharo-Slime.package

2 files changed

+4
-4
lines changed

repository/Grease-Tests-Pharo-Slime.package/GRReSlimeTest.class/instance/rules.st

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ running
22
rules
33

44
^ (OrderedCollection new
5-
addAll: GRSlimeBlockLintRule allSubclasses;
6-
addAll: GRSlimeParseTreeLintRule allSubclasses;
7-
addAll: GRSlimeTransformationRule allSubclasses;
5+
addAll: GRReSlimeBlockLintRule allSubclasses;
6+
addAll: GRReSlimeParseTreeLintRule allSubclasses;
7+
addAll: GRReSlimeTransformationRule allSubclasses;
88
add: ReMultiplePeriodsTerminatingStatementRule;
99
add: ReMethodSignaturePeriodRule;
1010
yourself) reject: #isAbstract
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
self packageOrganizer ensurePackage: #'Grease-Tests-Pharo-Slime' withTags: #()!
1+
SystemOrganization addCategory: #'Grease-Tests-Pharo-Slime'!

0 commit comments

Comments
 (0)
X Tutup