EvalMathTest: fix class name

The test class was copied from InventoryTest and phpunit is now
complaining that it cannot find the class in the test.

    1) Class EvalMathTest cannot be found in phpunit/EvalMathTest.php
    (phpunit 10.0.7)
This commit is contained in:
Alexandre Janniaux 2023-04-24 16:32:57 +02:00
parent b1e62d7297
commit 06aaa974b5

View File

@ -1,6 +1,7 @@
<?php
/* Copyright (C) 2010 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2022 Quatadah Nasdami <quatadah.nasdami@gmail.com>
* Copyright (C) 2023 Alexandre Janniaux <alexandre.janniaux@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -43,7 +44,7 @@ $conf->global->MAIN_DISABLE_ALL_MAILS=1;
* @backupStaticAttributes enabled
* @remarks backupGlobals must be disabled to have db,conf,user and lang not erased.
*/
class InventoryTest extends PHPUnit\Framework\TestCase
class EvalMathTest extends PHPUnit\Framework\TestCase
{
protected $savconf;
protected $savuser;