You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2020/03/02 00:55:00 UTC

[kafka] branch trunk updated: MINOR: Fix test name typo in StoresTest (#8006)

This is an automated email from the ASF dual-hosted git repository.

ijuma pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 285ad85  MINOR: Fix test name typo in StoresTest (#8006)
285ad85 is described below

commit 285ad85ff71c0baf048e95d0f875a4dcfbb4b101
Author: high.lee <ye...@daum.net>
AuthorDate: Mon Mar 2 09:54:34 2020 +0900

    MINOR: Fix test name typo in StoresTest (#8006)
    
    Reviewers: Ron Dagostino <rdagostinoconfluent.io>, Ismael Juma <is...@juma.me.uk>
---
 streams/src/test/java/org/apache/kafka/streams/state/StoresTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streams/src/test/java/org/apache/kafka/streams/state/StoresTest.java b/streams/src/test/java/org/apache/kafka/streams/state/StoresTest.java
index 8c83271..c4adccd 100644
--- a/streams/src/test/java/org/apache/kafka/streams/state/StoresTest.java
+++ b/streams/src/test/java/org/apache/kafka/streams/state/StoresTest.java
@@ -259,7 +259,7 @@ public class StoresTest {
     }
 
     @Test
-    public void shouldBuildTimestampedWindowStoreThatWrapsInMemroyWindowStore() {
+    public void shouldBuildTimestampedWindowStoreThatWrapsInMemoryWindowStore() {
         final TimestampedWindowStore<String, String> store = Stores.timestampedWindowStoreBuilder(
             Stores.inMemoryWindowStore("store", ofMillis(3L), ofMillis(3L), true),
             Serdes.String(),