From fd62564904c4aa638c8aa18ffc193892cb281711 Mon Sep 17 00:00:00 2001 From: Andy Ford Date: Sun, 1 Jan 2023 17:28:18 +0000 Subject: [PATCH] feat: rename intention code tag item --- src/plugin/intention/IntentionCodeTagItem.cpp | 2 +- test/plugin/intention/IntentionCodeTagItemTest.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin/intention/IntentionCodeTagItem.cpp b/src/plugin/intention/IntentionCodeTagItem.cpp index 00658e87c..ebdcbd560 100644 --- a/src/plugin/intention/IntentionCodeTagItem.cpp +++ b/src/plugin/intention/IntentionCodeTagItem.cpp @@ -13,7 +13,7 @@ namespace UKControllerPlugin::IntentionCode { auto IntentionCodeTagItem::GetTagItemDescription(int tagItemId) const -> std::string { - return "UKCP Intention Code"; + return "Intention Code"; } void IntentionCodeTagItem::SetTagItemData(Tag::TagData& tagData) diff --git a/test/plugin/intention/IntentionCodeTagItemTest.cpp b/test/plugin/intention/IntentionCodeTagItemTest.cpp index 579891afe..d58989a2e 100644 --- a/test/plugin/intention/IntentionCodeTagItemTest.cpp +++ b/test/plugin/intention/IntentionCodeTagItemTest.cpp @@ -54,7 +54,7 @@ namespace UKControllerPluginTest::IntentionCode { TEST_F(IntentionCodeTagItemTest, GetTagItemDescriptionReturnsCorrectDescription) { - EXPECT_EQ("UKCP Intention Code", tagItem.GetTagItemDescription(0)); + EXPECT_EQ("Intention Code", tagItem.GetTagItemDescription(0)); } TEST_F(IntentionCodeTagItemTest, GetTagItemDataSetsTagItem)