Skip to content

Commit

Permalink
Stop testing redis internal implementationd details
Browse files Browse the repository at this point in the history
  • Loading branch information
byroot committed Aug 9, 2022
1 parent 64247f5 commit 353b590
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
6 changes: 2 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ stop_all: stop_sentinel stop_slave stop stop_cluster
${TMP}:
@mkdir -p $@

${CONF}:
@touch $@

${BINARY}: ${TMP}
@bin/build ${REDIS_BRANCH} $<

Expand All @@ -47,7 +44,8 @@ stop:
@$(call kill-redis,${PID_PATH});\

start: ${BINARY}
@${BINARY} ${CONF} \
@cp ${CONF} ${TMP}/redis.conf; \
${BINARY} ${TMP}/redis.conf \
--daemonize yes\
--pidfile ${PID_PATH}\
--port ${PORT}\
Expand Down
4 changes: 0 additions & 4 deletions test/scanning_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,6 @@ def test_hscan_with_encoding

r.hmset "hash", *elements

assert_equal enc.to_s, r.object("encoding", "hash")

cursor = 0
all_key_values = []
loop do
Expand Down Expand Up @@ -345,8 +343,6 @@ def test_zscan_with_encoding

r.zadd "zset", elements

assert_equal enc.to_s, r.object("encoding", "zset")

cursor = 0
all_key_scores = []
loop do
Expand Down

0 comments on commit 353b590

Please sign in to comment.