From 014778344c7aeea6b73d17802229e5011d2ac1e0 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Thu, 4 Mar 2021 23:42:56 -0800 Subject: [PATCH] tests: remove unnecessary Cwd imports --- tests/build-products.t | 1 - tests/evaluate-basic.t | 1 - tests/evaluate-dependent-jobsets.t | 1 - tests/input-types/bzr-checkout.t | 1 - tests/input-types/bzr.t | 1 - tests/input-types/darcs.t | 1 - tests/input-types/deepgit.t | 1 - tests/input-types/git-rev.t | 1 - tests/input-types/git.t | 1 - tests/input-types/hg.t | 1 - tests/input-types/svn-checkout.t | 1 - tests/input-types/svn.t | 1 - tests/plugins/runcommand.t | 1 - 13 files changed, 13 deletions(-) diff --git a/tests/build-products.t b/tests/build-products.t index 740f5b17..0f558d86 100644 --- a/tests/build-products.t +++ b/tests/build-products.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; my %ctx = test_init(); diff --git a/tests/evaluate-basic.t b/tests/evaluate-basic.t index 73d81b4a..85d5547b 100644 --- a/tests/evaluate-basic.t +++ b/tests/evaluate-basic.t @@ -1,6 +1,5 @@ use feature 'unicode_strings'; use strict; -use Cwd; use Setup; my %ctx = test_init(); diff --git a/tests/evaluate-dependent-jobsets.t b/tests/evaluate-dependent-jobsets.t index 3b2ac8ec..0bf3a2f0 100644 --- a/tests/evaluate-dependent-jobsets.t +++ b/tests/evaluate-dependent-jobsets.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; my %ctx = test_init(); diff --git a/tests/input-types/bzr-checkout.t b/tests/input-types/bzr-checkout.t index c21151f3..ee1f90a0 100644 --- a/tests/input-types/bzr-checkout.t +++ b/tests/input-types/bzr-checkout.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; use TestScmInput; diff --git a/tests/input-types/bzr.t b/tests/input-types/bzr.t index 99f005bc..0cc0a23d 100644 --- a/tests/input-types/bzr.t +++ b/tests/input-types/bzr.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; use TestScmInput; diff --git a/tests/input-types/darcs.t b/tests/input-types/darcs.t index 8a6f02dc..aa95a8e6 100644 --- a/tests/input-types/darcs.t +++ b/tests/input-types/darcs.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; use TestScmInput; diff --git a/tests/input-types/deepgit.t b/tests/input-types/deepgit.t index d3dfa646..4d418148 100644 --- a/tests/input-types/deepgit.t +++ b/tests/input-types/deepgit.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; use TestScmInput; diff --git a/tests/input-types/git-rev.t b/tests/input-types/git-rev.t index 665e742b..866370d2 100644 --- a/tests/input-types/git-rev.t +++ b/tests/input-types/git-rev.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; use TestScmInput; diff --git a/tests/input-types/git.t b/tests/input-types/git.t index eba7c2b2..0804cc1a 100644 --- a/tests/input-types/git.t +++ b/tests/input-types/git.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; use TestScmInput; diff --git a/tests/input-types/hg.t b/tests/input-types/hg.t index 756e9653..28552288 100644 --- a/tests/input-types/hg.t +++ b/tests/input-types/hg.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; use TestScmInput; diff --git a/tests/input-types/svn-checkout.t b/tests/input-types/svn-checkout.t index e8dd7d95..48f07f09 100644 --- a/tests/input-types/svn-checkout.t +++ b/tests/input-types/svn-checkout.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; use TestScmInput; diff --git a/tests/input-types/svn.t b/tests/input-types/svn.t index 64e677b6..c2eb8cec 100644 --- a/tests/input-types/svn.t +++ b/tests/input-types/svn.t @@ -1,5 +1,4 @@ use strict; -use Cwd; use Setup; use TestScmInput; diff --git a/tests/plugins/runcommand.t b/tests/plugins/runcommand.t index 9dd1fbfe..1945e1dd 100644 --- a/tests/plugins/runcommand.t +++ b/tests/plugins/runcommand.t @@ -1,7 +1,6 @@ use feature 'unicode_strings'; use strict; use warnings; -use Cwd; use JSON; use Setup;