1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Lucas Kanashiro <kanashiro@debian.org>
Date: Mon, 16 Dec 2024 17:31:20 -0300
Subject: Add support to Minitest 5.22
Forwarded: no
---
test/instance_storage_test.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/instance_storage_test.rb b/test/instance_storage_test.rb
index 0a2aa21..726df77 100644
--- a/test/instance_storage_test.rb
+++ b/test/instance_storage_test.rb
@@ -4,7 +4,7 @@ require 'minitest/autorun'
require 'instance_storage'
-class InstanceStorageTest < MiniTest::Unit::TestCase
+class InstanceStorageTest < Minitest::Test
def test_get_and_create_instance
klass = Class.new do
include InstanceStorage end
|