Skip to content

Commit

Permalink
Merge branch 'develop' into check_log_regex
Browse files Browse the repository at this point in the history
  • Loading branch information
maddieford authored Sep 4, 2024
2 parents bffd26b + b43e143 commit 44f2d27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests_e2e/orchestrator/lib/agent_test_suite_combinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def _get_runbook_images(self, loader: AgentTestLoader) -> List[VmImageInfo]:
return images

# If it is not image or image set, it must be a URN, VHD, or an image from a gallery
if not self._is_urn(self.runbook.image) and not self._is_vhd(self.runbook.image) and not self._is_image_from_gallery(self.runbook.image):
if not self._is_urn(self.runbook.image) and not self._is_vhd(self.runbook.image) and not CustomImage._is_image_from_gallery(self.runbook.image):
raise Exception(f"The 'image' parameter must be an image, image set name, urn, vhd, or an image from a shared gallery: {self.runbook.image}")

i = VmImageInfo()
Expand Down

0 comments on commit 44f2d27

Please sign in to comment.