Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: small consistency fix in Test.pm #8116

Merged
merged 1 commit into from
Feb 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/ProductOpener/Test.pm
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ TXT

=head2 check_not_production ()
Fail unless we have less than 1000 products in database.
Fail unless we have less than 10000 products in database.
This is a simple heuristic to ensure we are not in a production database
Expand All @@ -141,7 +141,7 @@ sub check_not_production() {
}
);
unless ((0 <= $products_count) && ($products_count < 10000)) {
confess("Refusing to run destructive test on a DB of more than 1000 items\n");
confess("Refusing to run destructive test on a DB of more than 10,000 items\n");
}
}

Expand Down