refactor(schema)!: rename Schema -> TypeSet and other small renamings (#21446)

This commit is contained in:
Aaron Craelius
2024-08-30 17:01:48 +00:00
committed by GitHub
parent b33ed0716b
commit ce8f9d40f2
22 changed files with 106 additions and 89 deletions
+1 -1
View File
@@ -12,6 +12,6 @@ import (
func TestEnumType(t *testing.T) {
rapid.Check(t, func(t *rapid.T) {
enumType := EnumType().Draw(t, "enum")
require.NoError(t, enumType.Validate(schema.EmptySchema{}))
require.NoError(t, enumType.Validate(schema.EmptyTypeSet()))
})
}