Skip to content

Commit

Permalink
Revert #224 (fix for ui tests/fixed names) (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Jun 11, 2020
1 parent b4d8dff commit 58f0f2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TrackableTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ public function getDesiredName(): string
break;
}
}
// $name .= '@anonymous';
$name .= '@anonymous';
}

return trim(preg_replace('~^.+\\\\|[^0-9a-z\x7f-\xfe]+~s', '_', mb_strtolower($name)), '_');
return trim(preg_replace('~^atk4\\\\[^\\\\]+\\\\|[^0-9a-z\x7f-\xfe]+~s', '_', mb_strtolower($name)), '_');
}

/**
Expand Down

0 comments on commit 58f0f2e

Please sign in to comment.