These three specs files use the pattern: ```ruby RSpec.describe ClassName do describe "ClassName" do ``` This is redundant and unnecessary. Drop the `describe "ClassName" do`. There are many other cases where we could drop unnecessary spec subclasses (any nested describe/context blocks not using before/after/let/etc. can be folded into the containing block), but as those could potentially be useful for grouping (even if I don't think the tradeoff is worth it), I am not modifying those.
782 B
782 B