fix: correct formatting of resolutions map in TestImportHandler_Commit_Errors

This commit is contained in:
Wikid82
2025-11-22 14:29:42 -05:00
parent fea86a6c76
commit 0b46bb740c
@@ -252,7 +252,7 @@ func TestImportHandler_Commit_Errors(t *testing.T) {
// Case 2: Session not found
payload := map[string]interface{}{
"session_uuid": "non-existent",
"resolutions": map[string]string{},
"resolutions": map[string]string{},
}
body, _ := json.Marshal(payload)
w = httptest.NewRecorder()
@@ -270,7 +270,7 @@ func TestImportHandler_Commit_Errors(t *testing.T) {
payload = map[string]interface{}{
"session_uuid": "invalid-data-uuid",
"resolutions": map[string]string{},
"resolutions": map[string]string{},
}
body, _ = json.Marshal(payload)
w = httptest.NewRecorder()