Remove fixed test from xfail list #11

This commit is contained in:
boukeversteegh 2020-06-11 00:06:50 +02:00
parent 65c1f366ef
commit 5d2f3a2cd9
3 changed files with 9 additions and 6 deletions

View File

@ -1,5 +0,0 @@
{
"UPPERCASE": 10,
"UPPERCASE_V2": 10,
"UPPER_CAMEL_CASE": 10
}

View File

@ -3,12 +3,12 @@
xfail = {
"import_circular_dependency",
"oneof_enum", # 63
"casing_message_field_uppercase", # 11
"namespace_keywords", # 70
"namespace_builtin_types", # 53
"googletypes_struct", # 9
"googletypes_value", # 9,
"import_capitalized_package",
"example", # This is the example in the readme. Not a test.
}
services = {

View File

@ -0,0 +1,8 @@
syntax = "proto3";
package hello;
// Greeting represents a message you can tell a user.
message Greeting {
string message = 1;
}