Skip to content

Commit

Permalink
removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmancuso committed Feb 6, 2021
1 parent 0fcf30b commit 63bb6b2
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions src/masoniteorm/connections/SQLiteConnection.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,6 @@ def query(self, query, bindings, results="*", fetch_many=False):
if not self.open:
self.make_connection()

print(query)

try:
self._cursor = self._connection.cursor()

Expand Down
2 changes: 0 additions & 2 deletions tests/mysql/schema/test_mysql_schema_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ def test_can_advanced_table_creation(self):
blueprint.timestamps()

self.assertEqual(len(blueprint.table.added_columns), 13)
print(blueprint.to_sql())
self.assertEqual(
blueprint.to_sql(),
(
Expand All @@ -93,7 +92,6 @@ def test_can_add_primary_constraint_without_column_name(self):
blueprint.string("name")
blueprint.string("email")
self.assertEqual(len(blueprint.table.added_columns), 3)
print(blueprint.to_sql())
self.assertTrue(
blueprint.to_sql().startswith(
"CREATE TABLE `users` (`user_id` INT(11) NOT NULL PRIMARY KEY"
Expand Down
1 change: 0 additions & 1 deletion tests/postgres/schema/test_postgres_schema_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ def test_can_advanced_table_creation2(self):
blueprint.timestamps()

self.assertEqual(len(blueprint.table.added_columns), 16)
print(blueprint.to_sql())
self.assertEqual(
blueprint.to_sql(),
(
Expand Down
1 change: 0 additions & 1 deletion tests/sqlite/schema/test_sqlite_schema_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ def test_can_advanced_table_creation2(self):

self.assertEqual(len(blueprint.table.added_columns), 14)

print(blueprint.to_sql())
self.assertEqual(
blueprint.to_sql(),
(
Expand Down

0 comments on commit 63bb6b2

Please sign in to comment.