From 192ee59c754ec5c9b66e28cca94a75d643501be7 Mon Sep 17 00:00:00 2001 From: Justin Ma Date: Wed, 5 Feb 2025 20:27:17 +0800 Subject: [PATCH] Fix tests of docker image and Update Nu LICENSE (#15015) # Description - Fix docker image tests failure for [nightly build](https://github.com/nushell/nightly/actions/runs/13150680863) and [release build](https://github.com/nushell/nightly/actions/runs/13156381344). I have test them locally to make sure it works - Update Nushell LICENSE by the way --- LICENSE | 2 +- docker/test_docker.nu | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index ae174e8595193..1ecbafd78cadc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 - 2023 The Nushell Project Developers +Copyright (c) 2019 - 2025 The Nushell Project Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docker/test_docker.nu b/docker/test_docker.nu index 64adbba0c9753..374455c0a8970 100755 --- a/docker/test_docker.nu +++ b/docker/test_docker.nu @@ -148,6 +148,6 @@ def "test config initialised" [] { let env_size = $files | where file == "env.nu" | get size | first let config_size = $files | where file == "config.nu" | get size | first - assert greater $env_size 1KiB - assert greater $config_size 1KiB + assert greater $env_size 300B + assert greater $config_size 350B }