From 9e84521098bcc7d700cc19af5dc01e62fafe3a73 Mon Sep 17 00:00:00 2001 From: spencerrlongg Date: Tue, 2 Jan 2024 18:10:59 -0600 Subject: [PATCH] fix auto-increment settings for test settings --- tests/Support/Settings.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Support/Settings.php b/tests/Support/Settings.php index daeac032eb..d5aad59ada 100644 --- a/tests/Support/Settings.php +++ b/tests/Support/Settings.php @@ -62,7 +62,7 @@ class Settings return $this->update([ 'auto_increment_assets' => 1, 'auto_increment_prefix' => 'ABCD', - 'next_auto_tag_base' => '123', + 'next_auto_tag_base' => 123, 'zerofill_count' => 5 ]); } @@ -71,8 +71,8 @@ class Settings { return $this->update([ 'auto_increment_assets' => 0, - 'auto_increment_prefix' => '', - 'next_auto_tag_base' => '', + 'auto_increment_prefix' => 0, + 'next_auto_tag_base' => 0, 'zerofill_count' => 0 ]); }