We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6968524 commit adca395Copy full SHA for adca395
1 file changed
lib/rdf/spec/repository.rb
@@ -38,10 +38,10 @@
38
39
describe '#delete_insert' do
40
it 'updates transactionally' do
41
- if mutable.mutable? & mutable.supports?(:atomic_write)
+ if mutable.mutable? && mutable.supports?(:atomic_writes)
42
expect(mutable).to receive(:commit_transaction).and_call_original
43
statement = RDF::Statement(:s, RDF::URI.new("urn:predicate:1"), :o)
44
-
+
45
mutable.delete_insert([statement], [statement])
46
end
47
0 commit comments