@When("^Yo voto una segunda vez al mismo restaurante$")
 public void yo_voto_una_segunda_vez_al_mismo_restaurante() throws Throwable {
   try {
     votarRestauranteSemanal.vote();
   } catch (Exception e) {
     votoDuplicado = true;
   }
 }
 @When("^Yo voto al restaurante$")
 public void yo_voto_a_un_restaurante() throws Throwable {
   votarRestauranteSemanal.vote();
 }