[VOL-4211] Persist meters in the Core

Change-Id: I0f9a2914996a69be080bd8f77b3c7ae6cc902cb3
diff --git a/rw_core/core/device/flow/cache_test.go b/rw_core/core/device/flow/cache_test.go
index a418904..d0d8049 100644
--- a/rw_core/core/device/flow/cache_test.go
+++ b/rw_core/core/device/flow/cache_test.go
@@ -29,14 +29,14 @@
 
 // TestLoadersIdentical ensures that the group, flow, and meter loaders always have an identical implementation.
 func TestLoadersIdentical(t *testing.T) {
-	types := []string{"flow", "group", "meter"}
+	types := []string{"flow", "group"}
 
 	identical := [][]string{
-		{`ofp\.OfpFlowStats`, `ofp\.OfpGroupEntry`, `ofp\.OfpMeterEntry`},
-		{`\.Id`, `\.Desc\.GroupId`, `\.Config\.MeterId`},
-		{`uint64`, `uint32`, `uint32`},
-		{`Flow`, `Group`, `Meter`},
-		{`flow`, `group`, `meter`},
+		{`ofp\.OfpFlowStats`, `ofp\.OfpGroupEntry`},
+		{`\.Id`, `\.Desc\.GroupId`},
+		{`uint64`, `uint32`},
+		{`Flow`, `Group`},
+		{`flow`, `group`},
 	}
 
 	regexes := make([][]*regexp.Regexp, len(identical[0]))