/**
  * Tests to make sure that confirm() does NOT work when trying to confirm()
  *  within an active tournament
  * @covers BBTeam::unconfirm
  */
 public function test_unconfirm_active()
 {
     $this->set_object_with_open_match();
     $this->assertFalse($this->object->unconfirm());
 }