summaryrefslogtreecommitdiff
path: root/tests/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests.rs')
-rw-r--r--tests/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tests.rs b/tests/tests.rs
index 17fae25..57763f5 100644
--- a/tests/tests.rs
+++ b/tests/tests.rs
@@ -991,7 +991,7 @@ fn test_ref_stack_exhaustion() {
match catch_unwind(AssertUnwindSafe(|| -> Result<()> {
let lua = Lua::new();
let mut vals = Vec::new();
- for _ in 0..1000000 {
+ for _ in 0..10000000 {
vals.push(lua.create_table()?);
}
Ok(())