summaryrefslogtreecommitdiff
path: root/lib/chef_zero/endpoints/environment_endpoint.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-12-29 18:10:35 -0800
committerGitHub <noreply@github.com>2019-12-29 18:10:35 -0800
commitb39025e9526e65bc88c0c1ed2c2e1341340fcb13 (patch)
tree39213a71e48aaa14aa43931b829fd08741d30eb1 /lib/chef_zero/endpoints/environment_endpoint.rb
parent7c856ba33f5bda1eb636843e3968214cc140141a (diff)
parent30dc4f1b2b7f93c866b29d54e8b701031f1fa824 (diff)
downloadchef-zero-b39025e9526e65bc88c0c1ed2c2e1341340fcb13.tar.gz
Merge pull request #296 from chef/relative
Substitute require for require_relative
Diffstat (limited to 'lib/chef_zero/endpoints/environment_endpoint.rb')
-rw-r--r--lib/chef_zero/endpoints/environment_endpoint.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef_zero/endpoints/environment_endpoint.rb b/lib/chef_zero/endpoints/environment_endpoint.rb
index 37f0169..d2a6d86 100644
--- a/lib/chef_zero/endpoints/environment_endpoint.rb
+++ b/lib/chef_zero/endpoints/environment_endpoint.rb
@@ -1,6 +1,6 @@
require "ffi_yajl"
-require "chef_zero/endpoints/rest_object_endpoint"
-require "chef_zero/chef_data/data_normalizer"
+require_relative "rest_object_endpoint"
+require_relative "../chef_data/data_normalizer"
module ChefZero
module Endpoints