Skip to content

Commit 0dd95fa

Browse files
committed
#450: update rubocop-minitest to 0.15.0
1 parent 03caae8 commit 0dd95fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/sqlite_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def assert_tables(file, tables)
4646
tbl = t.first.to_s
4747
cols = t.values_at(1).sort.join(",")
4848
raise "No columns found for table #{tbl} in #{tables}" if cols.empty?
49-
refute schema[tbl].nil?, "Table '#{tbl}' not found in #{schema}"
49+
refute_nil schema[tbl], "Table '#{tbl}' not found in #{schema}"
5050
assert_equal cols, schema[tbl], "Columns mismatch for '#{tbl}'"
5151
end
5252
end

0 commit comments

Comments
 (0)