From 1ae55295383c01499e3b3b41a13284c7916f33e9 Mon Sep 17 00:00:00 2001 From: Dillon Kearns Date: Mon, 7 Nov 2022 11:39:06 +0530 Subject: [PATCH] elm-review fixes. --- tests/StaticHttpRequestsTests.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/StaticHttpRequestsTests.elm b/tests/StaticHttpRequestsTests.elm index 45fd4362..0ef517a7 100644 --- a/tests/StaticHttpRequestsTests.elm +++ b/tests/StaticHttpRequestsTests.elm @@ -435,7 +435,7 @@ startLowLevel apiRoutes staticHttpCache pages = ) , ( "mode", Encode.string "prod" ) , ( "staticHttpCache", encodedStaticHttpCache ) - , ( "compatibilityKey", Encode.int Pages.Internal.Platform.Cli.currentCompatibilityKey ) + , ( "compatibilityKey", Encode.int currentCompatibilityKey ) ] encodedStaticHttpCache : Encode.Value @@ -591,7 +591,7 @@ startWithRoutes pageToLoad _ staticHttpCache pages = ) , ( "staticHttpCache", encodedStaticHttpCache ) , ( "mode", Encode.string "dev-server" ) - , ( "compatibilityKey", Encode.int Pages.Internal.Platform.Cli.currentCompatibilityKey ) + , ( "compatibilityKey", Encode.int currentCompatibilityKey ) ] encodedStaticHttpCache : Encode.Value