Skip to content

Commit

Permalink
fix: Merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
marination committed Dec 29, 2023
1 parent 75a1bc5 commit 27daa8b
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions frappe/tests/test_dashboard_connections.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
# Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
# License: MIT. See LICENSE
import os
from unittest.mock import patch

import frappe
import frappe.utils
<<<<<<< HEAD
=======
from frappe.core.doctype.doctype.test_doctype import new_doctype
from frappe.custom.doctype.customize_form.test_customize_form import TestCustomizeForm
>>>>>>> 17cd3e9b3e (test: Custom doctype links having non std fieldname with dashboard override)
from frappe.desk.notifications import get_open_count
from frappe.tests.utils import FrappeTestCase, patch_hooks

Expand Down Expand Up @@ -154,36 +150,22 @@ def test_external_doctype_link_with_dashboard_override(self):


def create_test_data():
<<<<<<< HEAD
create_child_table_with_link_to_doctype_a()
create_child_table_with_link_to_doctype_b()
create_doctype_a_with_child_table_with_link_to_doctype_b()
create_doctype_b_with_child_table_with_link_to_doctype_a()
=======
create_test_child_table_with_link_to_doctype_a()
create_test_child_table_with_link_to_doctype_b()
create_test_doctype_a_with_test_child_table_with_link_to_doctype_b()
create_test_doctype_b_with_test_child_table_with_link_to_doctype_a()
create_linked_doctypes()
>>>>>>> 17cd3e9b3e (test: Custom doctype links having non std fieldname with dashboard override)
add_links_in_child_tables()


def delete_test_data():
doctypes = [
<<<<<<< HEAD
"Child Table With Link To Doctype A",
"Child Table With Link To Doctype B",
"Doctype A With Child Table With Link To Doctype B",
"Doctype B With Child Table With Link To Doctype A",
=======
"Test Child Table With Link To Doctype A",
"Test Child Table With Link To Doctype B",
"Test Doctype A With Child Table With Link To Doctype B",
"Test Doctype B With Child Table With Link To Doctype A",
"Test Doctype D",
"Test Doctype E",
>>>>>>> 17cd3e9b3e (test: Custom doctype links having non std fieldname with dashboard override)
]
for doctype in doctypes:
if frappe.db.table_exists(doctype):
Expand Down

0 comments on commit 27daa8b

Please sign in to comment.