summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_commands_check_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rubygems/test_gem_commands_check_command.rb')
-rw-r--r--test/rubygems/test_gem_commands_check_command.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/rubygems/test_gem_commands_check_command.rb b/test/rubygems/test_gem_commands_check_command.rb
index da5b411c83..07eea188e3 100644
--- a/test/rubygems/test_gem_commands_check_command.rb
+++ b/test/rubygems/test_gem_commands_check_command.rb
@@ -50,8 +50,8 @@ class TestGemCommandsCheckCommand < Gem::TestCase
FileUtils.rm b.spec_file
- assert_path_exists b.gem_dir
- refute_path_exists b.spec_file
+ assert_path_exist b.gem_dir
+ assert_path_not_exist b.spec_file
Gem.use_paths @gemhome
@@ -61,7 +61,7 @@ class TestGemCommandsCheckCommand < Gem::TestCase
end
end
- refute_path_exists b.gem_dir
- refute_path_exists b.spec_file
+ assert_path_not_exist b.gem_dir
+ assert_path_not_exist b.spec_file
end
end