bevy_reflect: Re-enable reflection compile fail tests (#14165)

# Objective

Looks like I accidentally disabled the reflection compile fail tests in
#13152. These should be re-enabled.

## Solution

Re-enable reflection compile fail tests.

## Testing

CI should pass. You can also test locally by navigating to
`crates/bevy_reflect/compile_fail/` and running:

```
cargo test --target-dir ../../../target
```
This commit is contained in:
Gino Valente 2024-07-05 13:49:03 -07:00 committed by GitHub
parent c6a89c2187
commit 09d86bfb96
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,3 @@
fn main() -> compile_fail_utils::ui_test::Result<()> {
// compile_fail_utils::test("tests/reflect_derive")
Ok(())
compile_fail_utils::test("tests/reflect_derive")
}