vgc unit tests part 3

Change-Id: Id87302102ea05fc99083842e3fc9ebab4304e2ca
diff --git a/internal/pkg/application/application_test.go b/internal/pkg/application/application_test.go
index 7670e3b..15071e3 100644
--- a/internal/pkg/application/application_test.go
+++ b/internal/pkg/application/application_test.go
@@ -100,7 +100,7 @@
 				test := map[string]*kvstore.KVPair{}
 				test["test_device_id"] = &kvstore.KVPair{
 					Key:   "test_device_id",
-					Value: "invalid_value",
+					Value: invalid_value,
 				}
 				dbintf.EXPECT().GetAllNbPorts(gomock.Any(), gomock.Any()).Return(test, nil).Times(1)
 				got := va.RestoreNbDeviceFromDb(tt.args.cntx, tt.args.deviceID)