Skip to content

Commit 7e0c686

Browse files
committed
chore: apply linting nits
1 parent e53b203 commit 7e0c686

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/lib/annotate_rb/model_annotator/annotation/annotation_builder_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
is_expected.to eq expected_result
183183
end
184184

185-
context 'when default timestamps are included' do
185+
context "when default timestamps are included" do
186186
let(:columns) do
187187
[
188188
mock_column("parent_id", :integer),
@@ -194,7 +194,7 @@
194194
]
195195
end
196196

197-
it 'sorts default timestamps second last before associations' do
197+
it "sorts default timestamps second last before associations" do
198198
is_expected.to eq <<~EOS
199199
# == Schema Information
200200
#
@@ -210,15 +210,15 @@
210210
EOS
211211
end
212212

213-
context 'when timestamps_column option is set' do
213+
context "when timestamps_column option is set" do
214214
let(:options) do
215215
AnnotateRb::Options.new(
216216
classified_sort: true,
217217
timestamp_columns: %w[created_at updated_at deleted_at]
218218
)
219219
end
220220

221-
it 'sorts configured timestamps into config order' do
221+
it "sorts configured timestamps into config order" do
222222
is_expected.to eq <<~EOS
223223
# == Schema Information
224224
#

0 commit comments

Comments
 (0)