Skip to content

Commit

Permalink
Merge branch 'release-8.9.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Sep 29, 2022
2 parents 09fa456 + d221a6e commit bde6c01
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
operating-system: [ ubuntu-latest ]
php-version: [ '7.4', '8.0', '8.1' ]
include:
- php-version: '7.4'
- php-version: '8.1'
coverage: true

steps:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
},
"require": {
"oat-sa/oatbox-extension-installer": "~1.1||dev-master",
"oat-sa/tao-core": ">=48.45.0",
"oat-sa/generis": ">=15.17.0",
"oat-sa/tao-core": ">=50.24.6",
"oat-sa/generis": ">=15.22",
"oat-sa/extension-tao-backoffice": ">=6.0.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Copyright (c) 2008-2010 (original work) Deutsche Institut für Internationale Pädagogische Forschung (under the project TAO-TRANSFER);
* 2009-2020 (update and modification) Public Research Centre Henri Tudor (under the project TAO-SUSTAIN & TAO-DEV);
* Copyright (c) 2008-2010 (original work) Deutsche Institut für Internationale Pädagogische Forschung
* (under the project TAO-TRANSFER);
* 2009-2020 (update and modification) Public Research Centre Henri Tudor
* (under the project TAO-SUSTAIN & TAO-DEV);
*/

namespace oat\taoTestTaker\test\unit\models\events\dispatcher;
Expand Down Expand Up @@ -53,19 +55,9 @@ public function setUp(): void
public function testDispatch(): void
{
$resourceUri = 'abc123';
$report = $this->createMock(common_report_Report::class);
$successReport = $this->createMock(common_report_Report::class);
$resource = $this->createMock(core_kernel_classes_Resource::class);

$report->method('getSuccesses')
->willReturn(
[
$successReport
]
);

$successReport->method('getData')
->willReturn($resource);
$successReport = new common_report_Report(common_report_Report::TYPE_SUCCESS, '', $resource);
$report = new common_report_Report(common_report_Report::TYPE_INFO, '', null, [$successReport]);

$resource->method('getUri')
->willReturn($resourceUri);
Expand Down
2 changes: 1 addition & 1 deletion views/js/loader/taoTestTaker.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion views/js/loader/taoTestTaker.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bde6c01

Please sign in to comment.