20300: Fix relative import paths.
authorTom Clegg <tom@curii.com>
Thu, 21 Sep 2023 19:57:53 +0000 (15:57 -0400)
committerTom Clegg <tom@curii.com>
Fri, 29 Sep 2023 14:14:14 +0000 (10:14 -0400)
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curii.com>

services/api/lib/update_permissions.rb
services/api/test/test_helper.rb

index 799bc40ba2c05f896f7d871ed96cdf3539acd2c0..b06a19747c77693e9f94f93fc9b16fc8b60bceba 100644 (file)
@@ -2,7 +2,7 @@
 #
 # SPDX-License-Identifier: AGPL-3.0
 
-require '20200501150153_permission_table_constants'
+require_relative '20200501150153_permission_table_constants'
 
 REVOKE_PERM = 0
 CAN_MANAGE_PERM = 3
index 843d4f1b23fccfb8777883c3021ab54187b3cf57..08696a99835e61865033a1222636fc905525f7de 100644 (file)
@@ -2,7 +2,7 @@
 #
 # SPDX-License-Identifier: AGPL-3.0
 
-require 'update_permissions'
+require_relative '../lib/update_permissions'
 
 ENV["RAILS_ENV"] = "test"
 unless ENV["NO_COVERAGE_TEST"]