Skip to content

Commit

Permalink
fix: rename doctype
Browse files Browse the repository at this point in the history
(cherry picked from commit bda868b)
  • Loading branch information
GursheenK authored and mergify[bot] committed Oct 17, 2023
1 parent d146132 commit 56da0ba
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) 2023, Frappe Technologies and contributors
// For license information, please see license.txt

frappe.ui.form.on("Document Comparator", {
frappe.ui.form.on("Audit Trail", {
refresh(frm) {
frm.page.clear_indicator();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"modified": "2023-08-22 12:12:59.780845",
"modified_by": "Administrator",
"module": "Core",
"name": "Document Comparator",
"name": "Audit Trail",
"owner": "Administrator",
"permissions": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from frappe.model.document import Document


class DocumentComparator(Document):
class AuditTrail(Document):
# begin: auto-generated types
# This code is auto-generated. Do not modify anything in this block.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from frappe.tests.utils import FrappeTestCase


class TestDocumentComparator(FrappeTestCase):
class TestAuditTrail(FrappeTestCase):
def setUp(self):
self.child_doctype = create_custom_child_doctype()
self.custom_doctype = create_custom_doctype()
Expand Down

0 comments on commit 56da0ba

Please sign in to comment.