From b6142a41b6b842c7adaa1b92e0cac05fbb67d9b1 Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Wed, 3 Sep 2025 10:22:41 -0700 Subject: [PATCH] Remove CodeWhisperer from Nova icons test --- test_nova_icons.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test_nova_icons.py b/test_nova_icons.py index 0c89b0c5..94a39a4c 100644 --- a/test_nova_icons.py +++ b/test_nova_icons.py @@ -6,7 +6,7 @@ Tests Amazon Nova, AWS App Studio, Amazon CodeWhisperer, and AWS Neuron """ from diagrams import Diagram -from diagrams.aws.ml import AmazonNova, AWSAppStudio, AmazonCodewhisperer, AWSNeuron +from diagrams.aws.ml import AmazonNova, AWSAppStudio, AWSNeuron def test_nova_icons(): """Test the new Nova and AI service icons""" @@ -15,11 +15,10 @@ def test_nova_icons(): # Create instances of the new services nova = AmazonNova("Amazon Nova") app_studio = AWSAppStudio("AWS App Studio") - codewhisperer = AmazonCodewhisperer("CodeWhisperer") neuron = AWSNeuron("AWS Neuron") # Create a simple flow - nova >> app_studio >> codewhisperer >> neuron + nova >> app_studio >> neuron print("✅ Test diagram created successfully!") print("📁 Generated file: nova_test.png")