From a4e6047925a2608e5c51a1117ee4a96139732a8e Mon Sep 17 00:00:00 2001 From: ike709 Date: Sun, 1 Dec 2024 15:12:46 -0600 Subject: [PATCH] Deal with passing Broken Tests (#2109) Co-authored-by: ike709 --- .../DMProject/Broken Tests/Tree/pathop_lhs.dm | 15 --------------- .../Expression/String/raw1.dm | 0 2 files changed, 15 deletions(-) delete mode 100644 Content.Tests/DMProject/Broken Tests/Tree/pathop_lhs.dm rename Content.Tests/DMProject/{Broken Tests => Tests}/Expression/String/raw1.dm (100%) diff --git a/Content.Tests/DMProject/Broken Tests/Tree/pathop_lhs.dm b/Content.Tests/DMProject/Broken Tests/Tree/pathop_lhs.dm deleted file mode 100644 index 92520fa2ee..0000000000 --- a/Content.Tests/DMProject/Broken Tests/Tree/pathop_lhs.dm +++ /dev/null @@ -1,15 +0,0 @@ - -//# issue 617 - -/atom/movable - var/paths = list() - top - - proc/do_assign() - paths += .top - -/proc/RunTest() - var/atom/movable/t = new - t.do_assign() - ASSERT(length(t.paths) == 1) - ASSERT(t.paths[1] == /atom/movable/top) diff --git a/Content.Tests/DMProject/Broken Tests/Expression/String/raw1.dm b/Content.Tests/DMProject/Tests/Expression/String/raw1.dm similarity index 100% rename from Content.Tests/DMProject/Broken Tests/Expression/String/raw1.dm rename to Content.Tests/DMProject/Tests/Expression/String/raw1.dm