May I ask the test get of rails to report an error like this?

this is my ruby and rails versions
clipboard.png

require "test_helper"

class SayControllerTest < ActionDispatch::IntegrationTest
  test "should get hello" do
    get say_hello_url
    assert_response :success
  end
  test "should say hello in json" do
    get say_hello_url
    assert_equal "{\"hello\":\"Rails!\"}", @response.body
  end
  test "should say hello in json" do
    get say_hello_url,{"user"=>"Join"}
    assert_equal "{\"hello\":\"Join!\"}", @response.body
  end
end

the third paragraph of code reports an error

Feb.16,2022

Join is followed by an exclamation point and one without

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-15d07c2-7def.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-15d07c2-7def.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?