Replacing interface{} with any everywhere (except generated mocks) (#29446)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
a21d470bee
Коммит
d316df6d28
@@ -207,7 +207,7 @@ func (s *MmctlE2ETestSuite) TestArchiveCommandCmdF() {
|
||||
err := archiveCommandCmdF(c, &cobra.Command{}, []string{command.Id})
|
||||
s.Require().Nil(err)
|
||||
s.Require().Len(printer.GetLines(), 1)
|
||||
s.Require().Equal(map[string]interface{}{"status": "ok"}, printer.GetLines()[0])
|
||||
s.Require().Equal(map[string]any{"status": "ok"}, printer.GetLines()[0])
|
||||
s.Require().Len(printer.GetErrorLines(), 0)
|
||||
|
||||
rcommand, err := s.th.App.GetCommand(command.Id)
|
||||
|
||||
Ссылка в новой задаче
Block a user