Skip to content

Commit f6fdffa

Browse files
committed
Use Statement#node? instead of Statement.has_blank_nodes?.
1 parent 562a1de commit f6fdffa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/rdf/spec/enumerable.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
expect(subject.enum_statement.count).to eq enumerable.each_statement.count
118118
subject.enum_statement.each do |s|
119119
expect(s).to be_a_statement
120-
expect(enumerable.each_statement.to_a).to include(s) unless s.has_blank_nodes?
120+
expect(enumerable.each_statement.to_a).to include(s) unless s.node?
121121
end
122122
end
123123
end

0 commit comments

Comments
 (0)