diff --git a/eo-runtime/src/test/java/org/eolang/SnippetTestCase.java b/eo-runtime/src/test/java/org/eolang/SnippetTestCase.java
index 28465fc0ef..1d9d875850 100755
--- a/eo-runtime/src/test/java/org/eolang/SnippetTestCase.java
+++ b/eo-runtime/src/test/java/org/eolang/SnippetTestCase.java
@@ -258,18 +258,12 @@ void runsTestsAfterPhiAndUnphi(final @TempDir Path temp) throws IOException {
* @param farea Farea instance
* @param target Directory to copy from
* @throws IOException If fails to copy files
- * @todo #3092:30min Remove filter with "rust-tests.eo". BinarizeMojo does not add rust
- * dependencies to rust-tests after phi->unphi (see:
- * this for details).
- * When it's resolved we need to remove the filter and make sure the snippet test
- * {@link SnippetTestCase#runsTestsAfterPhiAndUnphi(Path)} still works.
*/
private static void copySources(final Farea farea, final String target) throws IOException {
final Path runtime = Paths.get(System.getProperty("user.dir"))
.resolve(target);
final Collection sources = Files.walk(runtime)
.filter(src -> !src.toFile().isDirectory())
- .filter(src -> !src.endsWith("rust-tests.eo"))
.collect(Collectors.toList());
for (final Path src : sources) {
farea.files()