Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
yuandrew committed Nov 19, 2024
1 parent 8249c75 commit 360858b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions temporalcli/commands_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -601,8 +601,8 @@ func TestUnknownCommandExitsNonzero(t *testing.T) {
assert.Contains(t, res.Err.Error(), "unknown command")
}

func TestHiddenAliasLogFormat(t *testing.T) {
commandHarness := NewCommandHarness(t)
res := commandHarness.Execute("workflow", "list", "--log-format", "pretty")
assert.NoError(t, res.Err)
func (s *SharedServerSuite) TestHiddenAliasLogFormat() {
_ = s.waitActivityStarted().GetID()
res := s.Execute("workflow", "list", "--log-format", "pretty", "--address", s.Address())
s.NoError(res.Err)
}

0 comments on commit 360858b

Please sign in to comment.