Skip to content

Commit

Permalink
Merge pull request #504 from pharo-spec/NewTools-tests-let-image-in-d…
Browse files Browse the repository at this point in the history
…irty-state

NewTools-Debugger-Breakpoints-Tools leaves the image in a dirty state.
  • Loading branch information
jecisc authored Apr 10, 2023
2 parents df4dfc6 + 69bc2b5 commit 16dd8af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ StHaltAndBreakpointControlTest >> methodWithHaltSources [

{ #category : #helpers }
StHaltAndBreakpointControlTest >> removeMethodsWithHalts [
self testClass methods
do: [ :method | self testClass removeSelector: method selector]

(self testClass methods select: [ :m | m selector includesSubstring: 'Halt' ]) do: [ :method | self testClass removeSelector: method selector ]
]

{ #category : #running }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ StHaltCacheTest >> testInitialCacheBuild [
self assert: cache methodsWithHalts size equals: 6.
(self testClass methods
reject: [ :m |
#('StDummyTestClassWithHalts>>#mNoHalt' 'StDummyTestClassWithHalts>>#mRejectHalt')
#('StDummyTestClassWithHalts>>#mNoHalt' 'StDummyTestClassWithHalts>>#mRejectHalt' 'StDummyTestClassWithHalts>>#var')
includes: m printString ])
do: [ :method |
| haltNode nodeCache |
Expand Down

0 comments on commit 16dd8af

Please sign in to comment.