From 1f0aa482108eb87cd75f0df68975786002275068 Mon Sep 17 00:00:00 2001 From: Chris Marget Date: Sat, 19 Oct 2024 22:39:26 -0400 Subject: [PATCH] remove unused `BlueprintE()` test helper function --- apstra/test_utils/blueprint.go | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/apstra/test_utils/blueprint.go b/apstra/test_utils/blueprint.go index 1d933378..408df144 100644 --- a/apstra/test_utils/blueprint.go +++ b/apstra/test_utils/blueprint.go @@ -192,29 +192,8 @@ func BlueprintD(t testing.TB, ctx context.Context) *apstra.TwoStageL3ClosClient return bpClient } -func BlueprintE(t testing.TB, ctx context.Context) *apstra.TwoStageL3ClosClient { - t.Helper() - - client := GetTestClient(t, ctx) - template := TemplateD(t, ctx) - name := acctest.RandString(10) - id, err := client.CreateBlueprintFromTemplate(ctx, &apstra.CreateBlueprintFromTemplateRequest{ - RefDesign: apstra.RefDesignTwoStageL3Clos, - Label: name, - TemplateId: template.Id, - FabricSettings: &apstra.FabricSettings{ - SpineSuperspineLinks: utils.ToPtr(apstra.AddressingSchemeIp4), - SpineLeafLinks: utils.ToPtr(apstra.AddressingSchemeIp4), - }, - }) - require.NoError(t, err) - t.Cleanup(func() { require.NoError(t, client.DeleteBlueprint(ctx, id)) }) - - bpClient, err := client.NewTwoStageL3ClosClient(ctx, id) - require.NoError(t, err) - - return bpClient -} +//func BlueprintE(t testing.TB, ctx context.Context) *apstra.TwoStageL3ClosClient { +//} func BlueprintF(t testing.TB, ctx context.Context) *apstra.TwoStageL3ClosClient { t.Helper()