File: 0002-Add-support-to-Minitest-5.22.patch

package info (click to toggle)
ruby-instance-storage 2.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 144 kB
  • sloc: ruby: 95; makefile: 2; sh: 2
file content (22 lines) | stat: -rw-r--r-- 673 bytes parent folder | download | duplicates (2)
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