1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-17 09:57:01 +00:00

release version 12.2.10

This commit is contained in:
Gerasimos (Makis) Maropoulos
2024-01-18 03:11:54 +02:00
parent 12546322eb
commit 113ce190e6
31 changed files with 314 additions and 208 deletions

View File

@@ -18,7 +18,7 @@ func TestConfigurationStatic(t *testing.T) {
afterNew := *app.config
if !reflect.DeepEqual(def, afterNew) {
t.Fatalf("Default configuration is not the same after NewFromConfig expected:\n %#v \ngot:\n %#v", def, afterNew)
t.Fatalf("Default configuration is not the same after New expected:\n %#v \ngot:\n %#v", def, afterNew)
}
afterNew.Charset = "changed"
@@ -37,7 +37,7 @@ func TestConfigurationStatic(t *testing.T) {
app = New() // empty , means defaults so
if !reflect.DeepEqual(def, *app.config) {
t.Fatalf("Default configuration is not the same after NewFromConfig expected:\n %#v \ngot:\n %#v", def, *app.config)
t.Fatalf("Default configuration is not the same after New expected:\n %#v \ngot:\n %#v", def, *app.config)
}
}