From dd519f63a282706d938680f27e909d2e8dc41c51 Mon Sep 17 00:00:00 2001
From: David Luecke <daff@neyeon.com>
Date: Thu, 9 May 2019 09:53:30 -0700
Subject: [PATCH] fix: Fix versioning tests. Closes #1346

---
 packages/feathers/test/application.test.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/feathers/test/application.test.js b/packages/feathers/test/application.test.js
index 7830dd46fa..36588863e1 100644
--- a/packages/feathers/test/application.test.js
+++ b/packages/feathers/test/application.test.js
@@ -18,8 +18,8 @@ describe('Feathers application', () => {
   it('sets the version on main and app instance', () => {
     const app = feathers();
 
-    assert.strictEqual(feathers.version, '4.0.0-pre.0');
-    assert.strictEqual(app.version, '4.0.0-pre.0');
+    assert.ok(feathers.version > '4.0.0');
+    assert.ok(app.version > '4.0.0');
   });
 
   it('is an event emitter', done => {