test for video
Some checks failed
golangci-lint / lint (push) Failing after 21s
Run Go Tests / build (push) Failing after 15s
build / Build (push) Successful in 34s
Build and Push Docker Image / Build and push image (push) Successful in 2m37s

This commit is contained in:
2025-05-06 21:09:18 -07:00
parent c065df7163
commit b281d8b8b8
2 changed files with 2 additions and 2 deletions

View File

@@ -232,7 +232,7 @@ func TestRoboflowIntegration(t *testing.T) {
t.Run("AnalyzeImage with valid image", func(t *testing.T) {
// Load a test image (you should place a suitable test image in testdata/)
imageData, err := os.ReadFile("/home/rogueking/Documents/junk2jive-server/test.png")
imageData, err := os.ReadFile("./test2.jpg")
require.NoError(t, err, "Failed to load test image")
service := NewService()

View File

@@ -150,4 +150,4 @@ func getAllRoutes(router *chi.Mux) []string {
_ = chi.Walk(router, walkFunc)
return routes
}
}