mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-11 19:50:43 +08:00
14 lines
147 B
Go
14 lines
147 B
Go
package query
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestUpdatePhotoCounts(t *testing.T) {
|
|
err := UpdatePhotoCounts()
|
|
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|