Skip to content

Commit

Permalink
Cleanup storeStringFor: in RBBrowserEnvironmentTest
Browse files Browse the repository at this point in the history
Fix #3919
  • Loading branch information
astares committed Jul 13, 2019
1 parent 9dff4a4 commit 1ac9826
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ RBBrowserEnvironmentTest >> setUp [
RBBrowserEnvironmentTest >> storeStringFor: aBrowserEnvironment [
| newEnvironment |
newEnvironment := Smalltalk compiler evaluate: aBrowserEnvironment storeString.
self assert: newEnvironment numberSelectors = aBrowserEnvironment numberSelectors.
self assert: (newEnvironment not & aBrowserEnvironment) numberSelectors = 0
self assert: newEnvironment numberSelectors equals: aBrowserEnvironment numberSelectors.
self assert: (newEnvironment not & aBrowserEnvironment) numberSelectors equals: 0

]

Expand Down

0 comments on commit 1ac9826

Please sign in to comment.