Skip to content

Commit

Permalink
Merge branch 'release-3.7.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 1, 2024
2 parents 5392673 + d5a3f91 commit 5eeae50
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"require": {
"oat-sa/oatbox-extension-installer": "~1.1||dev-master",
"oat-sa/generis": ">=15.22",
"oat-sa/tao-core": ">=50.24.6",
"oat-sa/tao-core": ">=54.0.0",
"oat-sa/extension-tao-delivery": ">=15.0.0",
"oat-sa/extension-tao-delivery-rdf": ">=14.0.0",
"oat-sa/extension-tao-testqti": ">=41.0.0",
Expand Down
2 changes: 1 addition & 1 deletion views/js/loader/testPlugins.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion views/js/runner/plugins/security/sectionPause.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ define([
return new Promise(function(resolve, reject){
if(context.options.sectionPause &&
previousSection && section && section.id !== previousSection.id &&
item && _.contains(item.categories, sectionPauseCategory) ) {
item && _.includes(item.categories, sectionPauseCategory) ) {

testRunner
// when the pause has been taken into account, the runner will end the session
Expand Down
2 changes: 1 addition & 1 deletion views/js/test/runner/plugins/probes/latency/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ define([
getProxy: function() {
return {
sendVariables: function(trace) {
var traceData = _.indexBy(probeData, function(entry) {
var traceData = _.keyBy(probeData, function(entry) {
return (entry.marker ? entry.marker + '-' : '') + entry.type + '-' + entry.id;
});
assert.deepEqual(trace, traceData, 'The trace data should have been provided');
Expand Down

0 comments on commit 5eeae50

Please sign in to comment.