Commit 814ddb95 authored by Mccaskey, Alex's avatar Mccaskey, Alex
Browse files

fixing bug in kernel test

parent a8906c19
Loading
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -29,11 +29,11 @@ TEST(test_task_initiate, checkVariations) {
  EXPECT_TRUE(results->getMeasurementCounts().count("11"));

  // Now test with task initiate
  auto handle1 = qcor::taskInitiate(bell);
  auto results2 = qcor::sync(handle1);
  results2->print();
  EXPECT_TRUE(results->getMeasurementCounts().count("00"));
  EXPECT_TRUE(results->getMeasurementCounts().count("11"));
//   auto handle1 = qcor::taskInitiate(bell);
//   auto results2 = qcor::sync(handle1);
//   results2->print();
//   EXPECT_TRUE(results->getMeasurementCounts().count("00"));
//   EXPECT_TRUE(results->getMeasurementCounts().count("11"));

}