Skip to content

Commit b3d2f2a

Browse files
committed
cleanup
1 parent b19be94 commit b3d2f2a

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: CI
22

33
on:
4-
workflow_dispatch:
54
pull_request:
65
push:
76
branches:

src/StackExchange.Redis/RedisFeatures.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace StackExchange.Redis
4545
v7_2_0_rc1 = new Version(7, 1, 240), // 7.2 RC1 is version 7.1.240
4646
v7_4_0_rc1 = new Version(7, 3, 240), // 7.4 RC1 is version 7.3.240
4747
v7_4_0_rc2 = new Version(7, 3, 241), // 7.4 RC2 is version 7.3.241
48-
v8_0_0_rc1 = new Version(7, 9, 0); // 8.0 RC1 is version 7.9.240
48+
v8_0_0_M04 = new Version(7, 9, 227); // 8.0 M04 is version 7.9.227
4949
#pragma warning restore SA1310 // Field names should not contain underscore
5050
#pragma warning restore SA1311 // Static readonly fields should begin with upper-case letter
5151

tests/StackExchange.Redis.Tests/HashFieldTests.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ public void HashFieldPersistNoField()
309309
[Fact]
310310
public void HashFieldGetAndSetExpiry()
311311
{
312-
var db = Create(require: RedisFeatures.v8_0_0_rc1).GetDatabase();
312+
var db = Create(require: RedisFeatures.v8_0_0_M04).GetDatabase();
313313
var hashKey = Me();
314314

315315
// testing with timespan
@@ -358,7 +358,7 @@ public void HashFieldGetAndSetExpiry()
358358
[Fact]
359359
public async void HashFieldGetAndSetExpiryAsync()
360360
{
361-
var db = Create(require: RedisFeatures.v8_0_0_rc1).GetDatabase();
361+
var db = Create(require: RedisFeatures.v8_0_0_M04).GetDatabase();
362362
var hashKey = Me();
363363

364364
// testing with timespan
@@ -407,7 +407,7 @@ public async void HashFieldGetAndSetExpiryAsync()
407407
[Fact]
408408
public void HashFieldSetAndSetExpiry()
409409
{
410-
var db = Create(require: RedisFeatures.v8_0_0_rc1).GetDatabase();
410+
var db = Create(require: RedisFeatures.v8_0_0_M04).GetDatabase();
411411
var hashKey = Me();
412412

413413
// testing with timespan
@@ -470,7 +470,7 @@ public void HashFieldSetAndSetExpiry()
470470
[Fact]
471471
public async Task HashFieldSetAndSetExpiryAsync()
472472
{
473-
var db = Create(require: RedisFeatures.v8_0_0_rc1).GetDatabase();
473+
var db = Create(require: RedisFeatures.v8_0_0_M04).GetDatabase();
474474
var hashKey = Me();
475475

476476
// testing with timespan
@@ -532,7 +532,7 @@ public async Task HashFieldSetAndSetExpiryAsync()
532532
[Fact]
533533
public void HashFieldGetAndDelete()
534534
{
535-
var db = Create(require: RedisFeatures.v8_0_0_rc1).GetDatabase();
535+
var db = Create(require: RedisFeatures.v8_0_0_M04).GetDatabase();
536536
var hashKey = Me();
537537

538538
// single field
@@ -552,7 +552,7 @@ public void HashFieldGetAndDelete()
552552
[Fact]
553553
public async void HashFieldGetAndDeleteAsync()
554554
{
555-
var db = Create(require: RedisFeatures.v8_0_0_rc1).GetDatabase();
555+
var db = Create(require: RedisFeatures.v8_0_0_M04).GetDatabase();
556556
var hashKey = Me();
557557

558558
// single field

0 commit comments

Comments
 (0)