Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
martinboulais committed Oct 10, 2024
1 parent 1b0ea63 commit c38647a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Framework/Backend/kafka/KafkaMessagesConsumer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { LogManager } = require('@aliceo2/web-ui');
const { LogManager } = require('../log/LogManager.js');

/**
* Generic Kafka Message consumer extracting objects according to a protobuf definition
Expand Down
2 changes: 1 addition & 1 deletion Framework/Backend/test/mocha-kafka.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { AliEcsEventMessagesConsumer } = require('../index.js');
const { Kafka } = require('kafkajs');
const { AliEcsEventMessagesConsumer } = require('../kafka/AliEcsEventMessagesConsumer.js');

describe('KAFKA CONSUMERS', () => {
it('should successfully create an AliECS event message consumer', async () => {
Expand Down

0 comments on commit c38647a

Please sign in to comment.