@@ -69,17 +69,17 @@ func TestGetOCPVectorDBPath(t *testing.T) {
6969 {
7070 name : "Version 4.16" ,
7171 version : "4.16" ,
72- expected : "/rag/ocp_vector_db/ocp-4 .16" ,
72+ expected : "/rag/ocp_vector_db/ocp_4 .16" ,
7373 },
7474 {
7575 name : "Version 4.18" ,
7676 version : "4.18" ,
77- expected : "/rag/ocp_vector_db/ocp-4 .18" ,
77+ expected : "/rag/ocp_vector_db/ocp_4 .18" ,
7878 },
7979 {
8080 name : "Latest version" ,
8181 version : "latest" ,
82- expected : "/rag/ocp_vector_db/ocp-latest " ,
82+ expected : "/rag/ocp_vector_db/ocp_latest " ,
8383 },
8484 }
8585
@@ -313,8 +313,8 @@ func TestBuildRAGConfigs(t *testing.T) {
313313 if ! ok {
314314 t .Fatalf ("Expected indexPath to be string, got %T" , ocpConfig ["indexPath" ])
315315 }
316- if ocpPath != "/rag/ocp_vector_db/ocp-4 .16" {
317- t .Errorf ("OCP indexPath = %s, want /rag/ocp_vector_db/ocp-4 .16" , ocpPath )
316+ if ocpPath != "/rag/ocp_vector_db/ocp_4 .16" {
317+ t .Errorf ("OCP indexPath = %s, want /rag/ocp_vector_db/ocp_4 .16" , ocpPath )
318318 }
319319
320320 ocpIndexID , ok := ocpConfig ["indexID" ].(string )
@@ -354,8 +354,8 @@ func TestBuildRAGConfigs(t *testing.T) {
354354 if ! ok {
355355 t .Fatalf ("Expected indexPath to be string, got %T" , ocpConfig ["indexPath" ])
356356 }
357- if ocpPath != "/rag/ocp_vector_db/ocp-latest " {
358- t .Errorf ("OCP indexPath = %s, want /rag/ocp_vector_db/ocp-latest " , ocpPath )
357+ if ocpPath != "/rag/ocp_vector_db/ocp_latest " {
358+ t .Errorf ("OCP indexPath = %s, want /rag/ocp_vector_db/ocp_latest " , ocpPath )
359359 }
360360
361361 ocpIndexID , ok := ocpConfig ["indexID" ].(string )
0 commit comments