aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Tests/TechnologyRepository.Tests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data.Tests/TechnologyRepository.Tests.cs')
-rw-r--r--src/Data/DevHive.Data.Tests/TechnologyRepository.Tests.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Data/DevHive.Data.Tests/TechnologyRepository.Tests.cs b/src/Data/DevHive.Data.Tests/TechnologyRepository.Tests.cs
index c12a38e..d268777 100644
--- a/src/Data/DevHive.Data.Tests/TechnologyRepository.Tests.cs
+++ b/src/Data/DevHive.Data.Tests/TechnologyRepository.Tests.cs
@@ -30,7 +30,7 @@ namespace DevHive.Data.Tests
[TearDown]
public void TearDown()
{
- _ = this._context.Database.EnsureDeleted();
+ this._context.Database.EnsureDeleted();
}
#endregion
@@ -108,8 +108,8 @@ namespace DevHive.Data.Tests
Name = name
};
- _ = this._context.Technologies.Add(technology);
- _ = await this._context.SaveChangesAsync();
+ this._context.Technologies.Add(technology);
+ await this._context.SaveChangesAsync();
}
#endregion
}