Persistance de SearchText ajoutée

This commit is contained in:
Paul Schneider 2026-08-29 14:34:43 +01:00
commit 14dcd31da1
13 changed files with 302 additions and 197 deletions

View file

@ -81,7 +81,7 @@ public class MainPageSaveTests
Assert.NotEmpty(recorder.Calls);
var (method, path, body) = recorder.FirstCall;
Assert.Equal(HttpMethod.Post, method);
Assert.Equal("blog", path);
Assert.Equal("blogspot", path);
var sent = Assert.IsType<BlogPostDto>(body);
Assert.Equal(typed, sent.Title);
}