Skip to content

Commit 091de20

Browse files
committed
Remove unnecessary PROJECT_ROOT_FOLDER env values
1 parent 7344aa5 commit 091de20

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

spec/android_update_release_notes_spec.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
require 'spec_helper'
22

33
describe Fastlane::Actions::AndroidUpdateReleaseNotesAction do
4-
after do
5-
ENV['PROJECT_ROOT_FOLDER'] = nil
6-
end
7-
84
let(:new_section) do
95
<<~CONTENT
106
1.1
@@ -34,7 +30,6 @@
3430
it 'adds a new section on RELEASE-NOTES.txt' do
3531
in_tmp_dir do |tmp_dir|
3632
# Arrange
37-
ENV['PROJECT_ROOT_FOLDER'] = tmp_dir
3833
release_notes_txt = File.join(tmp_dir, 'RELEASE-NOTES.txt')
3934
File.write(release_notes_txt, content)
4035

@@ -51,7 +46,6 @@
5146
it 'adds a new section on the given file' do
5247
in_tmp_dir do |tmp_dir|
5348
# Arrange
54-
ENV['PROJECT_ROOT_FOLDER'] = tmp_dir
5549
changelog_md = File.join(tmp_dir, 'CHANGELOG.md')
5650
File.write(changelog_md, content)
5751

spec/ios_update_release_notes_spec.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
require 'spec_helper'
22

33
describe Fastlane::Actions::IosUpdateReleaseNotesAction do
4-
after do
5-
ENV['PROJECT_ROOT_FOLDER'] = nil
6-
end
7-
84
let(:new_section) do
95
<<~CONTENT
106
1.1
@@ -34,7 +30,6 @@
3430
it 'adds a new section on RELEASE-NOTES.txt' do
3531
in_tmp_dir do |tmp_dir|
3632
# Arrange
37-
ENV['PROJECT_ROOT_FOLDER'] = tmp_dir
3833
release_notes_txt = File.join(tmp_dir, 'RELEASE-NOTES.txt')
3934
File.write(release_notes_txt, content)
4035

@@ -51,7 +46,6 @@
5146
it 'adds a new section on the given file' do
5247
in_tmp_dir do |tmp_dir|
5348
# Arrange
54-
ENV['PROJECT_ROOT_FOLDER'] = tmp_dir
5549
changelog_md = File.join(tmp_dir, 'CHANGELOG.md')
5650
File.write(changelog_md, content)
5751

0 commit comments

Comments
 (0)