Skip to content

Commit

Permalink
test(cmd.dag): adjust tests for new rendered label
Browse files Browse the repository at this point in the history
  • Loading branch information
ramfox committed Mar 21, 2019
1 parent e6be262 commit 081cc79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/dag_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ func TestFullFieldToAbbr(t *testing.T) {
{"meta", "md"},
{"viz", "vz"},
{"transform", "tf"},
{"rendered", "rd"},
{"foo", "foo"},
}

Expand All @@ -30,7 +31,7 @@ func TestFullFieldToAbbr(t *testing.T) {
}
}

func TestAbbrFieldToField(t *testing.T) {
func TestAbbrFieldToFull(t *testing.T) {
cases := []struct {
field, exp string
}{
Expand All @@ -40,6 +41,7 @@ func TestAbbrFieldToField(t *testing.T) {
{"md", "meta"},
{"vz", "viz"},
{"tf", "transform"},
{"rd", "rendered"},
{"foo", "foo"},
}

Expand Down

0 comments on commit 081cc79

Please sign in to comment.