From b7f010cd80323bc5694f1b8ce5d2179f3260b8d0 Mon Sep 17 00:00:00 2001 From: fr33m0nk Date: Fri, 23 Feb 2024 22:54:28 +0530 Subject: [PATCH] [fr33m0nk]: Fix test file names :facepalm: --- ...m_producing_multiple_messages_per_consumed_message_test.clj} | 2 +- ...kafka_stream_with_at_least_once_delivery_semantics_test.clj} | 2 +- ...r_handling.clj => kafka_stream_with_error_handling_test.clj} | 2 +- ...=> kafka_stream_with_transactional_source_and_sink_test.clj} | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename test/fr33m0nk/{kafka_stream_producing_multiple_messages_per_consumed_message.clj => kafka_stream_producing_multiple_messages_per_consumed_message_test.clj} (99%) rename test/fr33m0nk/{kafka_stream_with_at_least_once_delivery_semantics.clj => kafka_stream_with_at_least_once_delivery_semantics_test.clj} (98%) rename test/fr33m0nk/{kafka_stream_with_error_handling.clj => kafka_stream_with_error_handling_test.clj} (99%) rename test/fr33m0nk/{kafka_stream_with_transactional_source_and_sink.clj => kafka_stream_with_transactional_source_and_sink_test.clj} (98%) diff --git a/test/fr33m0nk/kafka_stream_producing_multiple_messages_per_consumed_message.clj b/test/fr33m0nk/kafka_stream_producing_multiple_messages_per_consumed_message_test.clj similarity index 99% rename from test/fr33m0nk/kafka_stream_producing_multiple_messages_per_consumed_message.clj rename to test/fr33m0nk/kafka_stream_producing_multiple_messages_per_consumed_message_test.clj index f1b624a..3d5b537 100644 --- a/test/fr33m0nk/kafka_stream_producing_multiple_messages_per_consumed_message.clj +++ b/test/fr33m0nk/kafka_stream_producing_multiple_messages_per_consumed_message_test.clj @@ -1,4 +1,4 @@ -(ns fr33m0nk.kafka-stream-producing-multiple-messages-per-consumed-message +(ns fr33m0nk.kafka-stream-producing-multiple-messages-per-consumed-message-test (:require [clojure.string :as str] [clojure.test :refer [deftest testing is]] [fr33m0nk.akka.actor :as actor] diff --git a/test/fr33m0nk/kafka_stream_with_at_least_once_delivery_semantics.clj b/test/fr33m0nk/kafka_stream_with_at_least_once_delivery_semantics_test.clj similarity index 98% rename from test/fr33m0nk/kafka_stream_with_at_least_once_delivery_semantics.clj rename to test/fr33m0nk/kafka_stream_with_at_least_once_delivery_semantics_test.clj index 2a1be45..e359ac9 100644 --- a/test/fr33m0nk/kafka_stream_with_at_least_once_delivery_semantics.clj +++ b/test/fr33m0nk/kafka_stream_with_at_least_once_delivery_semantics_test.clj @@ -1,4 +1,4 @@ -(ns fr33m0nk.kafka-stream-with-at-least-once-delivery-semantics +(ns fr33m0nk.kafka-stream-with-at-least-once-delivery-semantics-test (:require [clojure.string :as str] [clojure.test :refer [deftest testing is]] [fr33m0nk.akka.actor :as actor] diff --git a/test/fr33m0nk/kafka_stream_with_error_handling.clj b/test/fr33m0nk/kafka_stream_with_error_handling_test.clj similarity index 99% rename from test/fr33m0nk/kafka_stream_with_error_handling.clj rename to test/fr33m0nk/kafka_stream_with_error_handling_test.clj index e321778..d42ab9a 100644 --- a/test/fr33m0nk/kafka_stream_with_error_handling.clj +++ b/test/fr33m0nk/kafka_stream_with_error_handling_test.clj @@ -1,4 +1,4 @@ -(ns fr33m0nk.kafka-stream-with-error-handling +(ns fr33m0nk.kafka-stream-with-error-handling-test (:require [clojure.string :as str] [clojure.test :refer [deftest testing is]] [fr33m0nk.akka.actor :as actor] diff --git a/test/fr33m0nk/kafka_stream_with_transactional_source_and_sink.clj b/test/fr33m0nk/kafka_stream_with_transactional_source_and_sink_test.clj similarity index 98% rename from test/fr33m0nk/kafka_stream_with_transactional_source_and_sink.clj rename to test/fr33m0nk/kafka_stream_with_transactional_source_and_sink_test.clj index d3abf66..cf3c5c9 100644 --- a/test/fr33m0nk/kafka_stream_with_transactional_source_and_sink.clj +++ b/test/fr33m0nk/kafka_stream_with_transactional_source_and_sink_test.clj @@ -1,4 +1,4 @@ -(ns fr33m0nk.kafka-stream-with-transactional-source-and-sink +(ns fr33m0nk.kafka-stream-with-transactional-source-and-sink-test (:require [clojure.string :as str] [clojure.test :refer [deftest testing is]] [fr33m0nk.akka.actor :as actor]