Skip to content

Commit

Permalink
Unit test updates
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoCoderMatrix86 committed Apr 2, 2024
1 parent 29c42b8 commit 77562fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
# use ubuntu-latest image to run steps on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/checkout@v4.1.2

# sets up .NET
# version can be found here https://dotnet.microsoft.com/en-us/download/dotnet/7.0
- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.101'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ internal class AudioConverterServiceUnitTest : IAudioConverterService

public Task<byte[]?> SplitAudiofileAsync(Audiofile audiofile, TimeSpan from, TimeSpan? to = null)
{
ProgressChanged?.Invoke(this, 100);
// This implementation does nothing with audio processing, so we only return some fake data
return Task.FromResult<byte[]?>(null);
}
Expand Down

0 comments on commit 77562fa

Please sign in to comment.