Fix backup build erro exception class name

When backups fail to build, tempest is not displaying the correct
exception because the class name is not following the pattern we
expect it to follow.

This change fixes the class name for the share backups build error
exception.

Change-Id: I9553ba44544d84dbc452973252391967225c724e
This commit is contained in:
silvacarloss 2024-03-06 19:24:36 -03:00
parent bdc5ad5961
commit cbab9fe0c7
1 changed files with 1 additions and 1 deletions

View File

@ -88,5 +88,5 @@ class ShareServerMigrationException(exceptions.TempestException):
"status")
class ShareBackupException(exceptions.TempestException):
class ShareBackupBuildErrorException(exceptions.TempestException):
message = ("Share backup %(backup_id)s failed and is in ERROR status")