Removed db-based statistics feature
[policy/models.git] / models-pdp / src / test / java / org / onap / policy / models / pdp / concepts / PdpStatusTest.java
index 90b8d43..07afd40 100644 (file)
@@ -4,6 +4,7 @@
  * ================================================================================
  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
  * Modifications Copyright (C) 2020-2021 Nordix Foundation.
+ * Modifications Copyright (C) 2023 Bell Canada. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -61,11 +62,6 @@ public class PdpStatusTest {
         orig.setResponse(resp);
         orig.setState(PdpState.SAFE);
 
-        final PdpStatistics stats = new PdpStatistics();
-        stats.setPdpInstanceId("my-pdp-id");
-
-        orig.setStatistics(stats);
-
         assertEquals(removeVariableFields(orig.toString()), removeVariableFields(new PdpStatus(orig).toString()));
     }
 }