Files

10 lines
261 B
Go
Raw Permalink Normal View History

package service
import "testing"
func TestSettingKeyAllowUserViewErrorRequests_Constant(t *testing.T) {
if SettingKeyAllowUserViewErrorRequests != "allow_user_view_error_requests" {
t.Fatalf("unexpected key: %s", SettingKeyAllowUserViewErrorRequests)
}
}