From c065008f95cd701f151e8f991caa3fb5dd019049 Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Fri, 23 Mar 2012 12:37:15 +0000 Subject: [PATCH] Fixed bug in graph_spec --- spec/graph/graph_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/graph/graph_spec.rb b/spec/graph/graph_spec.rb index 09cc6a4..d92562e 100644 --- a/spec/graph/graph_spec.rb +++ b/spec/graph/graph_spec.rb @@ -21,7 +21,7 @@ module GraphNjae describe "adds attribues" do it "adds then reports arbitrary attributes" do g.score = 15 - g.score == 15 + g.score.should == 15 end end # adds attributes -- 2.34.1