aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/arel/nodes_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases/arel/nodes_test.rb')
-rw-r--r--activerecord/test/cases/arel/nodes_test.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/activerecord/test/cases/arel/nodes_test.rb b/activerecord/test/cases/arel/nodes_test.rb
index 1934ef4c3b..9021de0d20 100644
--- a/activerecord/test/cases/arel/nodes_test.rb
+++ b/activerecord/test/cases/arel/nodes_test.rb
@@ -1,5 +1,6 @@
# frozen_string_literal: true
-require_relative 'helper'
+
+require_relative "helper"
module Arel
module Nodes
@@ -24,12 +25,10 @@ module Arel
eqeq_owner == hash_owner
end
- problem_msg = 'Some subclasses of Arel::Nodes::Node do not have a' \
- ' #== or #eql? or #hash defined from the same class as the others'
+ problem_msg = "Some subclasses of Arel::Nodes::Node do not have a" \
+ " #== or #eql? or #hash defined from the same class as the others"
assert_empty bad_node_descendants, problem_msg
end
-
-
end
end
end