Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Test/Add Test File#412

Closed
baristaGeek wants to merge 4 commits intodevfrom
test/various-console-logs
Closed

Test/Add Test File#412
baristaGeek wants to merge 4 commits intodevfrom
test/various-console-logs

Conversation

@baristaGeek
Copy link
Collaborator

Description

Testing console log regexing

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Documentation update
  • Chore: cleanup/renaming, etc
  • RFC
  • Test

Notes

Acceptance

@vercel
Copy link

vercel bot commented Dec 12, 2023

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
watermelon ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 13, 2023 7:22pm

@watermelon-copilot-for-code-review
Copy link

watermelon-copilot-for-code-review bot commented Dec 12, 2023

Watermelon AI Summary

This pull request focuses on enhancing automated tests by adding a new test case, refining regex patterns to ignore certain statements, removing an unnecessary console log, and validating Python test scenarios. Its aim is to improve code quality and maintain standards compliance.

GitHub PRs

Click here to login to Jira
Click here to login to Confluence
Click here to login to Slack
No results found in Notion Pages :(

No results found in Linear Tickets :(

Click here to login to Asana
watermelon is an open repo and Watermelon will serve it for free.
🍉🫶

if i % 3 == 0 and i % 5 == 0:
print("FizzBuzz")
elif i % 3 == 0:
print("Fizz")

Choose a reason for hiding this comment

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

This PR contains console logs. Please review or remove them.

def fizz_buzz(n):
for i in range(1, n + 1):
if i % 3 == 0 and i % 5 == 0:
print("FizzBuzz")

Choose a reason for hiding this comment

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

This PR contains console logs. Please review or remove them.

elif i % 5 == 0:
print("Buzz")
else:
print(i)

Choose a reason for hiding this comment

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

This PR contains console logs. Please review or remove them.

elif i % 3 == 0:
print("Fizz")
elif i % 5 == 0:
print("Buzz")

Choose a reason for hiding this comment

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

This PR contains console logs. Please review or remove them.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant