From e550237b4becf3960801c7dddf7a92d712000a0f Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 10 May 2019 15:20:56 +0400 Subject: Renamed a classes function "update_service" Signed-off-by: Valentin Popov --- classes/local/api.php | 2 +- tests/api_test.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/local/api.php b/classes/local/api.php index a025d16..eedcdbd 100644 --- a/classes/local/api.php +++ b/classes/local/api.php @@ -216,7 +216,7 @@ final class api { * @throws \coding_exception * @throws \dml_exception */ - public static function update_service(record $service): bool { + public static function set_service(record $service): bool { global $DB; $result = $DB->update_record(LW_TABLE_SERVICES, $service); diff --git a/tests/api_test.php b/tests/api_test.php index f079980..cd6ef6e 100644 --- a/tests/api_test.php +++ b/tests/api_test.php @@ -326,7 +326,7 @@ final class local_webhooks_api_testcase extends advanced_testcase { $record2 = self::get_random_record(); $record2->id = api::add_service($record1); - self::assertTrue(api::update_service($record2)); + self::assertTrue(api::set_service($record2)); $events = $DB->get_records(LW_TABLE_EVENTS); $services = $DB->get_records(LW_TABLE_SERVICES); -- cgit v1.2.3