From 90670d6405f41a7ba962fac4cecfa21ce3d49036 Mon Sep 17 00:00:00 2001 From: Ali Sadaqain Date: Tue, 14 May 2024 12:54:11 -0400 Subject: [PATCH] fix path of system_test_helper --- test/system/students_test.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/system/students_test.rb b/test/system/students_test.rb index a5a3bf8..690e06f 100644 --- a/test/system/students_test.rb +++ b/test/system/students_test.rb @@ -1,7 +1,8 @@ # frozen_string_literal: true require 'application_system_test_case' -require '/app/test/helpers/system_test_helper' +# require '/app/test/helpers/system_test_helper' +require_relative '../helpers/system_test_helper' class StudentsTest < ApplicationSystemTestCase include SystemTestHelper # Include the SystemTestHelper module here