diff --git a/debian/changelog b/debian/changelog
index 3be8ad4..e42abbd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+golang-github-creack-goselect (0.1.2+git20220131.1.b3ef940-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+  * Drop patch 01-Patch-TestReadWriteSync-goroutine-race.patch, present
+    upstream.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Fri, 15 Apr 2022 04:00:39 -0000
+
 golang-github-creack-goselect (0.1.2-3) unstable; urgency=medium
 
   * Add d/patches01-Patch-TestReadWriteSync-goroutine-race.patch (Closes: #1001594)
diff --git a/debian/patches/01-Patch-TestReadWriteSync-goroutine-race.patch b/debian/patches/01-Patch-TestReadWriteSync-goroutine-race.patch
deleted file mode 100644
index 00bb54f..0000000
--- a/debian/patches/01-Patch-TestReadWriteSync-goroutine-race.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From: Federico Grau <donfede@casagrau.org>
-Date: Wed, 15 Dec 2021 22:03:44 -0500
-Subject: Patch TestReadWriteSync goroutine race
-
-A goroutine thread in TestReadWriteSync can encounter a race condition
-(pipes are populated before they are ready to be read).
-
-This patch negligibly slows down the tests, from ~1 second to ~1.5
-seconds.
-
-Closes: #1001594 and upstream
-https://github.com/creack/goselect/issues/17 .
----
- select_test.go | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/select_test.go b/select_test.go
-index 6948b5b..086c2ab 100644
---- a/select_test.go
-+++ b/select_test.go
-@@ -30,7 +30,7 @@ func TestReadWriteSync(t *testing.T) {
- 		time.Sleep(time.Second)
- 		for i := 0; i < count; i++ {
- 			fmt.Fprintf(wws[i], "hello %d", i)
--			time.Sleep(time.Millisecond)
-+			time.Sleep(10*time.Millisecond)
- 		}
- 	}()
- 
diff --git a/debian/patches/series b/debian/patches/series
index 59d2dba..e69de29 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +0,0 @@
-01-Patch-TestReadWriteSync-goroutine-race.patch
diff --git a/select_test.go b/select_test.go
index 6948b5b..086c2ab 100644
--- a/select_test.go
+++ b/select_test.go
@@ -30,7 +30,7 @@ func TestReadWriteSync(t *testing.T) {
 		time.Sleep(time.Second)
 		for i := 0; i < count; i++ {
 			fmt.Fprintf(wws[i], "hello %d", i)
-			time.Sleep(time.Millisecond)
+			time.Sleep(10*time.Millisecond)
 		}
 	}()