[test/fuzzing/subset] Only try one subsetting, not two
diff --git a/test/fuzzing/hb-subset-fuzzer.cc b/test/fuzzing/hb-subset-fuzzer.cc
index 93153ed..5e15e06 100644
--- a/test/fuzzing/hb-subset-fuzzer.cc
+++ b/test/fuzzing/hb-subset-fuzzer.cc
@@ -57,21 +57,6 @@
   hb_set_destroy (output);
 
   unsigned flags = HB_SUBSET_FLAGS_DEFAULT;
-  const hb_codepoint_t text[] =
-      {
-	'A', 'B', 'C', 'D', 'E', 'X', 'Y', 'Z', '1', '2',
-	'3', '@', '_', '%', '&', ')', '*', '$', '!'
-      };
-
-  hb_subset_input_t *input = hb_subset_input_create_or_fail ();
-  if (!input)
-  {
-    hb_face_destroy (face);
-    hb_blob_destroy (blob);
-    return 0;
-  }
-  trySubset (face, text, sizeof (text) / sizeof (hb_codepoint_t), flags, input);
-
   unsigned num_axes;
   hb_codepoint_t text_from_data[16];
   if (size > sizeof (text_from_data) + sizeof (flags) + sizeof(num_axes)) {