Skip to content

Commit

Permalink
Addressed some of the review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
gcotelli committed May 18, 2018
1 parent 55ac3a4 commit f8c025d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions source/Buoy-Metaprogramming-Tests/NamespaceTest.class.st
Expand Up @@ -63,10 +63,8 @@ NamespaceTest >> testBindTo [
namespace bind: #Zero to: 0.

self
assert: namespace names size equals: 1;
assert: (namespace names includes: #Zero).

self assert: namespace >> #Zero equals: 0
assertCollection: namespace names equals: #(#Zero);
assert: namespace >> #Zero equals: 0
]

{ #category : #'tests-binding' }
Expand Down Expand Up @@ -119,7 +117,9 @@ NamespaceTest >> testRemoveBinding [

self
assert: namespace names isEmpty;
assert: removed equals: 0
assert: removed equals: 0.

self should: [ namespace >> #Zero ] raise: NotFound
]

{ #category : #'tests-binding' }
Expand Down
2 changes: 1 addition & 1 deletion source/Buoy-Metaprogramming/Interface.class.st
@@ -1,5 +1,5 @@
"
I'm an interface declaring a set of messages to be understood by the objects implementing me.
I'm an interface declaring a set of messages to be understood by the objects implementing me.
I'm not intended to be used as some kind of static type check, but to document an expected protocol.
"
Expand Down

0 comments on commit f8c025d

Please sign in to comment.