Description: Fix FTBFS with Ruby 3.2
 Replace File.exists? with File.exist?
Author: Lucas Kanashiro <kanashiro@ubuntu.com>
Last-Updated: 2024-20-23

--- a/testsuite/stest.rb
+++ b/testsuite/stest.rb
@@ -54,7 +54,7 @@
   def setup_dir
     begin
       ds = "#{@@prefix}/test#{@id}"
-      if File.exists?(ds)
+      if File.exist?(ds)
         FileUtils.rm_r(ds)
       end
       FileUtils.mkdir_p(ds)
