Skip to content

Commit

Permalink
More style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
salbertson committed Nov 16, 2019
1 parent 7da40aa commit 7d42a53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spec/models/file_review_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
file_review.build_violation(
line,
first_violation_message,
"foo = bar(1, 2)"
"foo = bar(1, 2)",
)
file_review.build_violation(
line,
other_violation_message,
"foo = bar(1, 2)"
"foo = bar(1, 2)",
)
violation = file_review.violations.first

Expand Down
4 changes: 2 additions & 2 deletions spec/services/suggest_changes_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
violation = instance_double(
"Violation",
messages: [
"A space is required after ',' comma-spacing"
"A space is required after ',' comma-spacing",
],
source: "function wat(one,two, three) {"
source: "function wat(one,two, three) {",
)
suggest_changes = described_class.new(violation)

Expand Down

0 comments on commit 7d42a53

Please sign in to comment.