Unverified Commit 25e5402a authored by Austin Horstman's avatar Austin Horstman
Browse files

tests/lua-5: format tweak

parent e3864d7d
Loading
Loading
Loading
Loading
+14 −22
Original line number Diff line number Diff line
@@ -73,11 +73,7 @@ pkgs.recurseIntoAttrs {
      '';
    };

  checkWrapping =
    pkgs.runCommandLocal "test-${lua.name}-wrapping"
      {
      }
      ''
  checkWrapping = pkgs.runCommandLocal "test-${lua.name}-wrapping" { } ''
    grep -- 'LUA_PATH=' ${wrappedHello}/bin/hello
    touch $out
  '';
@@ -100,11 +96,7 @@ pkgs.recurseIntoAttrs {
        touch $out
      '';

  checkRelativeImports =
    pkgs.runCommandLocal "test-${lua.name}-relative-imports"
      {
      }
      ''
  checkRelativeImports = pkgs.runCommandLocal "test-${lua.name}-relative-imports" { } ''
    source ${./assert.sh}

    lua_vanilla_package_path="$(${lua}/bin/lua -e "print(package.path)")"