Drop tables instead of truncating tables. (#1224)

This commit is contained in:
Googol Lee
2025-06-26 22:19:09 +02:00
committed by GitHub
parent a8edb30ae4
commit 0192e4e640
5 changed files with 32 additions and 64 deletions

View File

@@ -1,9 +1,15 @@
package media_type
import (
"flag"
"testing"
)
func init() {
// Avoid panic with providing flags in `test_utils/integration_setup.go`.
flag.CommandLine.Init("media_type", flag.ContinueOnError)
}
type boolImage bool
const isImage boolImage = true