Skip to content

Commit

Permalink
chore: change error description of creation cvmi
Browse files Browse the repository at this point in the history
Signed-off-by: Nikita Korolev <nikita.korolev@flant.com>
  • Loading branch information
universal-itengineer committed Apr 30, 2024
1 parent 09faa35 commit 3e39650
Show file tree
Hide file tree
Showing 504 changed files with 2 additions and 439,082 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/vm_creation_performance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ var _ = Describe("Performance test 20 vm creation", Label("performance"), Ordere
clientConfig := kubeclient.DefaultClientConfig(&pflag.FlagSet{})
client, err := kubeclient.GetClientFromClientConfig(clientConfig)
if err != nil {
log.Fatalf("Cannot obtain Virtualization client: %v\n", err)
Expect(err).NotTo(HaveOccurred(),("Cannot obtain Virtualization client")
}

AfterAll(func() {
Expand All @@ -185,7 +185,7 @@ var _ = Describe("Performance test 20 vm creation", Label("performance"), Ordere

Context("VM", func() {
cvmi, err = CVMI(client, cvmiName, "create")
Expect(err).NotTo(HaveOccurred(), "%s", err)
Expect(err).NotTo(HaveOccurred(), "should create CVMI %s", cvmiName)

It("Create", func() {
for i := 1; i <= vmCount; i++ {
Expand Down
Loading

0 comments on commit 3e39650

Please sign in to comment.