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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fuzzing-case-sensitivity #30

Merged
merged 1 commit into from
Jan 2, 2024
Merged

fuzzing-case-sensitivity #30

merged 1 commit into from
Jan 2, 2024

Conversation

Breus
Copy link
Owner

@Breus Breus commented Dec 30, 2023

No description provided.

Also changed RandomJsonGenerator default values a bit higher
Copy link

Quality Gate Passed Quality Gate passed

Kudos, no new issues were introduced!

0 New issues
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@@ -168,8 +185,7 @@ private ArrayNode createRandomArrayNode(Context context, int depth) {
}

private boolean reachedTargetSize(int estimatedSizeBytes) {
boolean didIt = config.hasTargetSize() && estimatedSizeBytes >= config.getTargetJsonSizeBytes();
return didIt;
return config.hasTargetSize() && estimatedSizeBytes >= config.getTargetJsonSizeBytes();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for fixing some leftovers after my debugging 😅

@Breus Breus merged commit 8ab7f06 into master Jan 2, 2024
3 checks passed
@Breus Breus deleted the fuzzing-case-sensitivity branch January 2, 2024 12:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants