From 8af946a49da2adaaaf24be796ff6b9406c298dbb Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 17 Jun 2021 04:57:05 -0500 Subject: [PATCH] tests: fix duplicate PostVersionTest class. Fix `PostVersionTest` being defined in two different places, which broke the test runner if you tried to run the system tests at the same time as the regular tests. --- test/system/post_version_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/post_version_test.rb b/test/system/post_version_test.rb index 56bae2d85..8d5292fdc 100644 --- a/test/system/post_version_test.rb +++ b/test/system/post_version_test.rb @@ -1,6 +1,6 @@ require "application_system_test_case" -class PostVersionTest < ApplicationSystemTestCase +class PostVersionSystemTest < ApplicationSystemTestCase context "Post versions" do setup do @user = create(:builder_user)