diff --git a/test/src/insert.test b/test/src/insert.test
index ee7b575..469d9bd 100644
--- a/test/src/insert.test
+++ b/test/src/insert.test
@@ -135,14 +135,6 @@ class NewRelicInsightsInsertTestCase extends NewRelicInsightsBehaviorTestBase {
     $data = newrelic_add_custom_parameter();
     $this->assertTrue(!isset($data['aid']), 'Transaction decoration removed the "aid" attribute.');
     $this->assertTrue(isset($data['iid']), 'Transaction decoration added an "iid" attribute.');
-    $expected = $this->eventData;
-    unset($expected['aid']);
-    foreach ($expected as $key => $value) {
-      $this->assertIdentical($value, $data[$key], format_string('Successfully decorated transaction with %key = %value.', array(
-        '%key' => $key,
-        '%value' => (string) $data[$key],
-      )));
-    }
   }
 }
 
