/**
  * Test update with fuzzy flag
  */
 public function testUpdateWithFuzzy()
 {
     $msgid = '%1$s-%2$s';
     $msgstr = 'translate';
     $pofile = new PoParser();
     $pofile->read(__DIR__ . '/pofiles/context.po');
     $pofile->updateEntry($msgid, $msgstr);
 }