Skip to content

Commit 8e6250c

Browse files
committed
remove hardcoded test name
1 parent 7790e00 commit 8e6250c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/languages/bevy_mod_scripting_lua/tests/lua_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ fn discover_all_tests() -> Vec<Test> {
106106
let mut test_files = Vec::new();
107107
visit_dirs(&test_root, &mut |entry| {
108108
let path = entry.path();
109-
if path.extension().unwrap() == "lua" && path.to_string_lossy().contains("adds_system") {
109+
if path.extension().unwrap() == "lua" {
110110
// only take the path from the assets bit
111111
let relative = path.strip_prefix(&assets_root).unwrap();
112112
test_files.push(Test {

0 commit comments

Comments
 (0)