Skip to content

Commit

Permalink
fix build error, bump version to 1.4.1 (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
EverettSummer authored Jul 8, 2023
1 parent d8db70c commit 2230256
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 36 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mira-video-manager",
"version": "1.4.0",
"version": "1.4.1",
"description": "Video Process for mira project",
"main": "index.js",
"scripts": {
Expand Down
7 changes: 1 addition & 6 deletions src/test-helpers/FakeDatabaseService.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 IROHA LAB
* Copyright 2023 IROHA LAB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -19,7 +19,6 @@ import { injectable } from 'inversify';
import { DatabaseService } from '../services/DatabaseService';
import { JobRepository } from '../repository/JobRepository';
import { VideoProcessRuleRepository } from '../repository/VideoProcessRuleRepository';
import { FakeMessageRepository } from './FakeMessageRepository';
import { NotImplementException } from '@irohalab/mira-shared';
import { NextFunction, Request, Response } from 'express';
import { VertexRepository } from '../repository/VertexRepository';
Expand All @@ -45,10 +44,6 @@ export class FakeDatabaseService implements DatabaseService {
return this.jobRepo;
}

public getMessageRepository(): FakeMessageRepository {
throw new NotImplementException();
}

public getVideoProcessRuleRepository(): VideoProcessRuleRepository {
throw new NotImplementException();
}
Expand Down
29 changes: 0 additions & 29 deletions src/test-helpers/FakeMessageRepository.ts

This file was deleted.

0 comments on commit 2230256

Please sign in to comment.