From bd3b0c5988fd599baeacb7e8a617634c147e2372 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 30 Nov 2025 21:07:34 +0100 Subject: [PATCH] Not needed --- test/models/account_test.rb | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/models/account_test.rb b/test/models/account_test.rb index 75fff6c..2585ba0 100644 --- a/test/models/account_test.rb +++ b/test/models/account_test.rb @@ -15,9 +15,4 @@ class AccountTest < ActiveSupport::TestCase accounts(:signal).update!(settings: { "restrict_room_creation_to_administrators" => "false" }) assert_not accounts(:signal).reload.settings.restrict_room_creation_to_administrators? end - - test "default settings" do - a = Account.create! name: "New account" - assert_equal({ "restrict_room_creation_to_administrators" => false }, a[:settings]) - end end