Skip to content

Commit 27128d2

Browse files
committed
Further improvements on tests
1 parent ef8d822 commit 27128d2

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

test/api/lhcFills.test.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ module.exports = () => {
4949
expect(response.status).to.equal(201);
5050

5151
const { data } = response.body;
52-
expect(data.stableBeamsStart).to.equal(new Date('2022-03-22 15:00:00 utc').getTime());
53-
expect(data.stableBeamsEnd).to.equal(new Date('2022-03-22 15:00:00 utc').getTime());
54-
expect(data.stableBeamsDuration).to.equal(600);
5552
expect(data.beamType).to.equal('Pb-Pb');
5653
expect(data.fillingSchemeName).to.equal('schemename');
5754
});
@@ -61,9 +58,6 @@ module.exports = () => {
6158
.expect(409)
6259
.send({
6360
fillNumber: 1,
64-
stableBeamsStart: new Date('2022-03-22 15:00:00'),
65-
stableBeamsEnd: new Date('2022-03-22 15:00:00'),
66-
stableBeamsDuration: 600,
6761
fillingSchemeName: 'schemename',
6862
})
6963
.end((err, res) => {
@@ -110,7 +104,6 @@ module.exports = () => {
110104
expect(data.stableBeamsStart).to.equal(new Date('2022-03-22 15:00:00 utc').getTime());
111105
expect(data.stableBeamsEnd).to.equal(new Date('2022-03-22 15:00:00 utc').getTime());
112106
expect(data.stableBeamsDuration).to.equal(600);
113-
expect(data.beamType).to.equal('Pb-Pb');
114107
expect(data.fillingSchemeName).to.equal('schemename');
115108
expect(data.collidingBunchesCount).to.equal(7654321);
116109
expect(data.deliveredLuminosity).to.equal(123.123456);

0 commit comments

Comments
 (0)