Remove the quotes from the partial string in the profiler timing objects.

This commit is contained in:
Dylan Thacker-Smith
2014-10-18 16:26:18 -04:00
parent f5faa4858c
commit b9ac3fef8f
2 changed files with 6 additions and 6 deletions
+5 -5
View File
@@ -89,7 +89,7 @@ class RenderProfilingTest < Minitest::Test
include_node = t.profiler[1]
include_node.children.each do |child|
assert_equal "'a_template'", child.partial
assert_equal "a_template", child.partial
end
end
@@ -99,12 +99,12 @@ class RenderProfilingTest < Minitest::Test
a_template = t.profiler[1]
a_template.children.each do |child|
assert_equal "'a_template'", child.partial
assert_equal "a_template", child.partial
end
b_template = t.profiler[2]
b_template.children.each do |child|
assert_equal "'b_template'", child.partial
assert_equal "b_template", child.partial
end
end
@@ -114,12 +114,12 @@ class RenderProfilingTest < Minitest::Test
a_template1 = t.profiler[1]
a_template1.children.each do |child|
assert_equal "'a_template'", child.partial
assert_equal "a_template", child.partial
end
a_template2 = t.profiler[2]
a_template2.children.each do |child|
assert_equal "'a_template'", child.partial
assert_equal "a_template", child.partial
end
end