You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def json_backend=(backend)
backend = backend.to_s
if @@available_json_backend.include?(backend)
@@json_backend = backend
else
raise JSON::Schema::JsonParseError.new("The JSON backend '#{backend}' could not be found.")
end
end
SHOULD BE:
@@available_json_backends
The text was updated successfully, but these errors were encountered:
SHOULD BE:
@@available_json_backends
The text was updated successfully, but these errors were encountered: