Skip to content

Commit

Permalink
fixup: test names
Browse files Browse the repository at this point in the history
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
  • Loading branch information
toddbaert committed Jul 4, 2024
1 parent 389625e commit 2b9fb80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions json/flagd_definitions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ func init() {
}
}

func TestPositiveParsing(t *testing.T) {
func TestPositiveFlagParsing(t *testing.T) {
if err := walkPath(true, "./test/flags/positive", compiledFlagDefinitionSchema); err != nil {
t.Error(err)
t.FailNow()
}
}

func TestNegativeParsing(t *testing.T) {
func TestNegativeFlagParsing(t *testing.T) {
if err := walkPath(false, "./test/flags/negative", compiledFlagDefinitionSchema); err != nil {
t.Error(err)
t.FailNow()
Expand Down

0 comments on commit 2b9fb80

Please sign in to comment.